To Convert dp to px or px to dp fisrt we need to calculate device Density DPI Lets create DisplayMetrics object DisplayMetrics displayMetrics= getResources().getDisplayMetrics(); Now calculate devie Density DPI float densityDpi=displayMetrics.densityDpi; Convert dp to px dp*(densityDpi/defaultDPI); Convert px to dp px*(densityDpi/defaultDPI);
we will get density DPI fromDisplaymetrics object.
float defaultDPI=DisplayMetrics.DENSITY_DEFAULT;
Extract Date and Time from Long Type Variable - RRutors
What is ANR? How to avoid and resolve it?
Open PDF in Google Drive with Intent in Android - RRutors
How to Get bitmap from drawable: Android
How do I generate random numbers in Dart?
How to Use Deprecated Handler() in Android - RRutors Guide
How to convert milli seconds to hours, minutes and seconds in Android?
How to convert DP to Pixel and Pixel to Dp?
What happens next when the device switches between portrait and landscape?
How to get a contact image using a phone number in android?
ERR_ACCESS_DENIED in Android Webview with sdk 30
Set Activity to Fullscreen Mode in Android - RRutors
Android Studio project R can't find
How do I check in SQLite whether a table exists?
What is the Different Between val and var in Kotlin?
What is Intent? What is the difference between an implicit intent and an explicit intent?
How to validate email address in Android with Kotlin?
How to Exit android app on back pressed?
Key Points to remember while develop the Android Application.
Fix Play Store Rejection Due to SMS Permission - RRutors
What is Context?
Fix Error: Use JsonReader.setLenient(true) for Malformed JSON
How to stop EditText focus at Activity startup in Android?
How to Generate signed apk with android studio
Symmetric vs Asymmetric Encryption in Android Server - RRutors
How do i load image from drawable folder in Jetpack Compose?
What is Application?
How to install/ uninstall apk by command line ADB
Fix Duplicate Files in APK Build.gradle Issue - RRutors
FCM Not Receiving Notifications in Android - RRutors
Hide/Disable soft keyboard on Activity launch: Android
Decompile APK Files: How to Get Source Code - RRutors Guide
How to get screen size (width,height) in Android?
What is the difference between match_parent and fill_parent?
What are Android Versions available?
Fix Android Emulator Kill Error When Running Your App
How can i comment inside xml file in android studio?
How to save activity State in Android?
Add Jar/Library Files as Dependency in Android Studio
What is "shared preferences" in Android ?