Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- package com.example.myapplication1
- import android.os.Bundle
- import androidx.activity.enableEdgeToEdge
- import
- androidx.appcompat.app.AppCompatActivity
- import androidx.core.view.ViewCompat
- import androidx.core.view.WindowInsetsCompat
- class MainActivity : AppCompatActivity() {
- override fun onCreate(savedInstanceState: Bundle?)
- { super.onCreate(savedInstanceState)
- enableEdgeToEdge()
- setContentView(R.layout.activity_main)
- ViewCompat.setOnApplyWindowInsetsListener(findViewById(R.id.main)) { v, insets ->
- val systemBars = insets.getInsets(WindowInsetsCompat.Type.systemBars())
- v.setPadding(systemBars.left, systemBars.top, systemBars.right, systemBars.bottom)
- insets
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment