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 NetworkOnMainThread Exception?
Fix Behavior Subclass BottomSheetBehavior Exception - RRutors
Add Jar/Library Files as Dependency in Android Studio
Fix Play Store Rejection Due to SMS Permission - RRutors
How to save activity State in Android?
How to copy database from assets folder in android using kotlin
Check List for Generate Signed APK Android
How to validate email address in Android with Kotlin?
Explain Fragment Life Cycle
FragmentPagerAdapter deprecated, Since API 27.1.0 FragmentPagerAdapter is deprecated.
Set Activity to Fullscreen Mode in Android - RRutors
How to get an image resource by it's name in android?
What is ANR? How to avoid and resolve it?
Hide/Disable soft keyboard on Activity launch: Android
Key Points to remember while develop the Android Application.
What are Android Versions available?
How to get complete address from latitude and longitude?
How to Exit android app on back pressed?
Fix Error: Use JsonReader.setLenient(true) for Malformed JSON
Fix Android Emulator Kill Error When Running Your App
How to Get bitmap from drawable: Android
How to install/ uninstall apk by command line ADB
What are the notifications available in android?
What is Context?
Android Studio project R can't find
Emulator: emulator: ERROR: Can't find 'Linux version ' string in kernel image file: Andr
How to get a contact image using a phone number in android?
What is "shared preferences" in Android ?
How to start a new activity on button click
ERR_ACCESS_DENIED in Android Webview with sdk 30
How to stop EditText focus at Activity startup in Android?
How do I generate random numbers in Dart?
Symmetric vs Asymmetric Encryption in Android Server - RRutors
How to reduce APK package size?
What is Android?
How do I check in SQLite whether a table exists?
How to check Android version?
How to avoid multiple button click at same time in android?
What is ANR in android?
How To Set Text Color Programmatically Android TextView?