To make Activity fullscreen need to add below code public void onCreate(Bundle savedInstanceState) { requestWindowFeature(Window.FEATURE_NO_TITLE); setContentView(R.layout.activity_main);
super.onCreate(savedInstanceState);
getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,
WindowManager.LayoutParams.FLAG_FULLSCREEN);
}
How to Get bitmap from drawable: Android
How to convert DP to Pixel and Pixel to Dp?
How to check Android version?
How to Use Deprecated Handler() in Android - RRutors Guide
What is ANR in android?
What is the Different Between val and var in Kotlin?
Android Studio project R can't find
How to copy database from assets folder in android using kotlin
FragmentPagerAdapter deprecated, Since API 27.1.0 FragmentPagerAdapter is deprecated.
How to reduce APK package size?
INSTALL_FAILED_INVALID_APK: Split lib_slice_9_apk was defined multiple times. It is possible that th
How to get an image resource by it's name in android?
What is Intent? What is the difference between an implicit intent and an explicit intent?
How to find Android Device UDID or unique ID?
Fix Android Emulator Kill Error When Running Your App
How do i load image from drawable folder in Jetpack Compose?
Fix Error: Use JsonReader.setLenient(true) for Malformed JSON
How to get complete address from latitude and longitude?
Fix Play Store Rejection Due to SMS Permission - RRutors
Extract Date and Time from Long Type Variable - RRutors
How to Exit android app on back pressed?
Symmetric vs Asymmetric Encryption in Android Server - RRutors
How do I check in SQLite whether a table exists?
What is Context?
What is the difference between match_parent and fill_parent?
Explain Fragment Life Cycle
Permission denied for window type 2010 in Marshmallow device
Hide/Disable soft keyboard on Activity launch: Android
Set Activity to Fullscreen Mode in Android - RRutors
What are the notifications available in android?
How to get screen size (width,height) in Android?
Key Points to remember while develop the Android Application.
How to avoid multiple button click at same time in android?
How to install/ uninstall apk by command line ADB
Open PDF in Google Drive with Intent in Android - RRutors
Decompile APK Files: How to Get Source Code - RRutors Guide
FCM Not Receiving Notifications in Android - RRutors
Fix Duplicate Files in APK Build.gradle Issue - RRutors
What is ANR? How to avoid and resolve it?
What is NetworkOnMainThread Exception?