根据手机的分辨率从 dp 的单位 转成为 px(像素)

时间:2014-05-24 12:46:52   收藏:0   阅读:313

/**

* 根据手机的分辨率从 dp 的单位 转成为 px(像素)
*/
public static int dip2px(Context context, float dpValue) {
final float scale = context.getResources().getDisplayMetrics().density;
return (int) (dpValue * scale + 0.5f);
}

根据手机的分辨率从 dp 的单位 转成为 px(像素),布布扣,bubuko.com

评论(0
© 2014 mamicode.com 版权所有 京ICP备13008772号-2  联系我们:gaon5@hotmail.com
迷上了代码!