复制代码
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18public class DensityUtil { /** * 根据屏幕的分辨率从 dp 的单位 转成为 px(像素) */ public static int dip2px(Context context, float dpValue) { final float scale = context.getResources().getDisplayMetrics().density; return (int) (dpValue * scale + 0.5f); } /** * 根据屏幕的分辨率从 px(像素) 的单位 转成为 dp */ public static int px2dip(Context context, float pxValue) { final float scale = context.getResources().getDisplayMetrics().density; return (int) (pxValue / scale + 0.5f); } }
最后
以上就是感性香烟最近收集整理的关于安卓dp和px转换的全部内容,更多相关安卓dp和px转换内容请搜索靠谱客的其他文章。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复