With the Display object we can get the Screen width and height Display display = getWindowManager().getDefaultDisplay(); But getWidth(),getHeight() are deprecated from Android API Level 13 and introduced getSize() method Display display = getWindowManager().getDefaultDisplay();
int width = display.getWidth();
int height = display.getHeight();
Point size = new Point();
display.getSize(size);
int width = size.x;
int height = size.y;
Hide/Disable soft keyboard on Activity launch: Android
Check List for Generate Signed APK Android
Fix Duplicate Files in APK Build.gradle Issue - RRutors
What is Context?
Key Points to remember while develop the Android Application.
What is Android Fragments?
Decompile APK Files: How to Get Source Code - RRutors Guide
How to reduce APK package size?
How to validate email address in Android with Kotlin?
How to Generate signed apk with android studio
How to Exit android app on back pressed?
Add Jar/Library Files as Dependency in Android Studio
How to start a new activity on button click
Fix Android Emulator Kill Error When Running Your App
What is the Different Between val and var in Kotlin?
How to get complete address from latitude and longitude?
How to convert milli seconds to hours, minutes and seconds in Android?
Emulator: emulator: ERROR: Can't find 'Linux version ' string in kernel image file: Andr
How To Set Text Color Programmatically Android TextView?
FragmentPagerAdapter deprecated, Since API 27.1.0 FragmentPagerAdapter is deprecated.
How to check Android version?
Android Studio project R can't find
What is Intent? What is the difference between an implicit intent and an explicit intent?
Fix Play Store Rejection Due to SMS Permission - RRutors
How to get an image resource by it's name in android?
What is Application?
INSTALL_FAILED_INVALID_APK: Split lib_slice_9_apk was defined multiple times. It is possible that th
What are Android Versions available?
What is the difference between match_parent and fill_parent?
How do I check in SQLite whether a table exists?
How to find Android Device UDID or unique ID?
How do I generate random numbers in Dart?
Open PDF in Google Drive with Intent in Android - RRutors
How to install/ uninstall apk by command line ADB
What is ANR in android?
Explain Fragment Life Cycle
How to avoid multiple button click at same time in android?
How do i load image from drawable folder in Jetpack Compose?
Symmetric vs Asymmetric Encryption in Android Server - RRutors
What is Android?