Advertisement
Guest User

Untitled

a guest
Oct 21st, 2019
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. public static float convertPixelsToDp(float px, Context context){
  2. return px / ((float) context.getResources().getDisplayMetrics().densityDpi / DisplayMetrics.DENSITY_DEFAULT);
  3. }
  4.  
  5. public static float convertDpToPixel(float dp, Context context){
  6. return dp * ((float) context.getResources().getDisplayMetrics().densityDpi / DisplayMetrics.DENSITY_DEFAULT);
  7. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement