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?
Fix Duplicate Files in APK Build.gradle Issue - RRutors
Symmetric vs Asymmetric Encryption in Android Server - RRutors
How to get an image resource by it's name in android?
What is ANR? How to avoid and resolve it?
How to start a new activity on button click
What are Android Versions available?
Permission denied for window type 2010 in Marshmallow device
How to save activity State in Android?
ERR_ACCESS_DENIED in Android Webview with sdk 30
How to find Android Device UDID or unique ID?
Fix Error: Use JsonReader.setLenient(true) for Malformed JSON
How to Generate signed apk with android studio
How to Get bitmap from drawable: Android
What is the difference between match_parent and fill_parent?
How to Use Deprecated Handler() in Android - RRutors Guide
How to install/ uninstall apk by command line ADB
Decompile APK Files: How to Get Source Code - RRutors Guide
Explain Fragment Life Cycle
How to get complete address from latitude and longitude?
How to convert DP to Pixel and Pixel to Dp?
Emulator: emulator: ERROR: Can't find 'Linux version ' string in kernel image file: Andr
Set Activity to Fullscreen Mode in Android - RRutors
Check List for Generate Signed APK Android
Fix Behavior Subclass BottomSheetBehavior Exception - RRutors
Open PDF in Google Drive with Intent in Android - RRutors
How do I generate random numbers in Dart?
What is Application?
What is NetworkOnMainThread Exception?
Invoke-customs are only supported starting with android 0 --min-api 26
What is Intent? What is the difference between an implicit intent and an explicit intent?
INSTALL_FAILED_INVALID_APK: Split lib_slice_9_apk was defined multiple times. It is possible that th
What is "shared preferences" in Android ?
FragmentPagerAdapter deprecated, Since API 27.1.0 FragmentPagerAdapter is deprecated.
How to check Android version?
How to avoid multiple button click at same time in android?
How to reduce APK package size?
How do I check in SQLite whether a table exists?
How to validate email address in Android with Kotlin?
What is Android Fragments?