ulfben

DIP to Pixel (Android)

Jan 8th, 2017
652
0
Never
2
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.59 KB | None | 0 0
  1. int DIP_VALUE = 5;
  2. int pixel = (int) TypedValue.applyDimension(TypedValue.COMPLEX_UNIT_DIP, DIP_VALUE, getResources().getDisplayMetrics());
  3.  
  4. //or simply
  5. float pixels = getResources().getDimensionPixelSize(DIP_VALUE);
  6.  
  7. mTextView.setTextSize(pixels);
  8.  
  9. public static float getDipFromPixels(float px) {
  10.         return TypedValue.applyDimension(TypedValue.COMPLEX_UNIT_PX, px, Resources.getSystem().getDisplayMetrics());
  11. }
  12.  
  13. public static float getPixelsFromDip(float dip) {
  14.        return TypedValue.applyDimension(TypedValue.COMPLEX_UNIT_DIP, dip, Resources.getSystem().getDisplayMetrics());
  15. }
Advertisement
Comments
  • Rteuixl
    125 days
    # text 0.21 KB | 0 0
    1. Best t33n active cpx link daily updates!
    2.  
    3. Copy and paste the link in a new browser tab and then hit enter!
    4.  
    5. https://crazyporn.@xxx/members/157354/?asgtbndr=1&play=true&spon=adworld&zone=400
    6.  
    7. Remove the @
  • Comment was deleted
Add Comment
Please, Sign In to add comment