Skip to content

Instantly share code, notes, and snippets.

@jafar260698
Created August 26, 2020 14:12
Show Gist options
  • Save jafar260698/276186d10604751347c2c8d673ab9942 to your computer and use it in GitHub Desktop.
Save jafar260698/276186d10604751347c2c8d673ab9942 to your computer and use it in GitHub Desktop.
// Manifestdagi xolatt
<activity android:name=".ui.MainActivity"
android:theme="@style/Theme.AppCompat.Light.NoActionBar"
android:windowSoftInputMode="stateAlwaysHidden|adjustPan"/>
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
@Suppress("DEPRECATION")
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.R) {
window.insetsController?.hide(WindowInsets.Type.statusBars())
} else {
window.setFlags(
WindowManager.LayoutParams.FLAG_FULLSCREEN,
WindowManager.LayoutParams.FLAG_FULLSCREEN
)
}
setContentView(R.layout.activity_main)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment