14 protected void onCreate(Bundle savedInstanceState) {
15 super.onCreate(savedInstanceState);
16 EdgeToEdge.enable(
this);
17 setContentView(R.layout.activity_bottom_bar);
18 ViewCompat.setOnApplyWindowInsetsListener(findViewById(R.id.main), (v, insets) -> {
19 Insets systemBars = insets.getInsets(WindowInsetsCompat.Type.systemBars());
20 v.setPadding(systemBars.left, systemBars.top, systemBars.right, systemBars.bottom);