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;
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
How to copy database from assets folder in android using kotlin
How to stop EditText focus at Activity startup in Android?
What is ANR in android?
How to start a new activity on button click
Open PDF in Google Drive with Intent in Android - RRutors
Decompile APK Files: How to Get Source Code - RRutors Guide
How to Use Deprecated Handler() in Android - RRutors Guide
Add Jar/Library Files as Dependency in Android Studio
How to get screen size (width,height) in Android?
Set Activity to Fullscreen Mode in Android - RRutors
Permission denied for window type 2010 in Marshmallow device
How To Set Text Color Programmatically Android TextView?
Fix Android Emulator Kill Error When Running Your App
Fix Play Store Rejection Due to SMS Permission - RRutors
How can i comment inside xml file in android studio?
FragmentPagerAdapter deprecated, Since API 27.1.0 FragmentPagerAdapter is deprecated.
How to check Android version?
Check List for Generate Signed APK Android
How to convert milli seconds to hours, minutes and seconds in Android?
How to find Android Device UDID or unique ID?
How to reduce APK package size?
What are Android Versions available?
How to install/ uninstall apk by command line ADB
Extract Date and Time from Long Type Variable - RRutors
What is Context?
What is the difference between match_parent and fill_parent?
Symmetric vs Asymmetric Encryption in Android Server - RRutors
How to get a contact image using a phone number in android?
What is "shared preferences" in Android ?
Fix Duplicate Files in APK Build.gradle Issue - RRutors
What is the Different Between val and var in Kotlin?
Invoke-customs are only supported starting with android 0 --min-api 26
How to Generate signed apk with android studio
ERR_ACCESS_DENIED in Android Webview with sdk 30
FCM Not Receiving Notifications in Android - RRutors
Key Points to remember while develop the Android Application.
How to get an image resource by it's name in android?
How to Exit android app on back pressed?