 Android 15 sdk 35 edgeToEdge Default Settings Need to disable edge to edge or add paddings code to add paddings ``` ViewCompat.setOnApplyWindowInsetsListener( findViewById<View>(R.id.appbar) ) { v: View, insets: WindowInsetsCompat -> val systemBars: Insets = insets.getInsets(WindowInsetsCompat.Type.systemBars()) v.setPadding(0, systemBars.top, 0, 0) insets } ```