Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Android specifying pixel units (like sp, px, dp) without using XML

Is it possible to specify the pixel unit in code. What I mean is, say I have a layout and I want the size to be 20dp, then is there any way to do so without writing in a layout xml

like image 285
pankajagarwal Avatar asked Feb 16 '11 05:02

pankajagarwal


2 Answers

In a view:

DisplayMetrics metrics = getContext().getResources().getDisplayMetrics();
float dp = 20f;
float fpixels = metrics.density * dp;
int pixels = (int) (fpixels + 0.5f);

In an Activity, of course, you leave off the getContext().

To convert from scaled pixels (sp) to pixels, just use metrics.scaledDensity instead of metrics.density.

EDIT: As @Santosh's answer points out, you can do the same thing using the utility class TypedValue:

DisplayMetrics metrics = getContext().getResources().getDisplayMetrics();
float dp = 20f;
float fpixels = TypedValue.applyDimension(TypedValue.COMPLEX_UNIT_DIP, dp, metrics);
int pixels = Math.round(fpixels);

For sp, substitute TypedValue.COMPLEX_UNIT_SP for TypedValue.COMPLEX_UNIT_DIP.

Internally, applyDimension() does exactly the same calculation as my code above. Which version to use is a matter of your coding style.

like image 51
Ted Hopp Avatar answered Nov 10 '22 08:11

Ted Hopp


You can use

float pixels = TypedValue.applyDimension(TypedValue.COMPLEX_UNIT_DIP, 20, getResources().getDisplayMetrics());

now, the value of pixels is equivalent to 20dp

The TypedValue contains other similar methods that help in conversion

like image 37
Santosh Avatar answered Nov 10 '22 09:11

Santosh