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;
What is ANR in android?
What is Context?
What are Android Versions available?
How to get screen size (width,height) in Android?
What is the difference between match_parent and fill_parent?
What is Android?
Explain Fragment Life Cycle
Open PDF in Google Drive with Intent in Android - RRutors
How to Generate signed apk with android studio
What is NetworkOnMainThread Exception?
How to find Android Device UDID or unique ID?
How do I check in SQLite whether a table exists?
How to save activity State in Android?
How to copy database from assets folder in android using kotlin
Decompile APK Files: How to Get Source Code - RRutors Guide
How do I generate random numbers in Dart?
How to Exit android app on back pressed?
What are the notifications available in android?
Fix Behavior Subclass BottomSheetBehavior Exception - RRutors
What is Android Fragments?
Fix Error: Use JsonReader.setLenient(true) for Malformed JSON
How to install/ uninstall apk by command line ADB
How to reduce APK package size?
What happens next when the device switches between portrait and landscape?
Invoke-customs are only supported starting with android 0 --min-api 26
Permission denied for window type 2010 in Marshmallow device
What is ANR? How to avoid and resolve it?
Hide/Disable soft keyboard on Activity launch: Android
FragmentPagerAdapter deprecated, Since API 27.1.0 FragmentPagerAdapter is deprecated.
How to get complete address from latitude and longitude?
Fix Play Store Rejection Due to SMS Permission - RRutors
Symmetric vs Asymmetric Encryption in Android Server - RRutors
How to start a new activity on button click
How to get a contact image using a phone number in android?
Key Points to remember while develop the Android Application.
How do i load image from drawable folder in Jetpack Compose?
Fix Duplicate Files in APK Build.gradle Issue - RRutors
How to stop EditText focus at Activity startup in Android?
How to avoid multiple button click at same time in android?
Emulator: emulator: ERROR: Can't find 'Linux version ' string in kernel image file: Andr