【Android 单位dp和px之间相互转换】万事须己运,他得非我贤。这篇文章主要讲述Android 单位dp和px之间相互转换相关的知识,希望能为你提供帮助。
public 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); } }
推荐阅读
- android ScrollView 控制行数
- 聊天机器人(基于android)
- XBOX游戏机存储更多游戏的4款最佳硬盘合集
- 6款完全私密的最佳匿名Web浏览器合集
- 提高网站排名的8种必备最佳SEO工具合集
- 6大最佳人员搜索引擎合集(哪一个最适合你())
- Windows的10款最佳免费防病毒软件合集
- Windows 10的5款最佳屏幕录制软件(哪个最好用())
- 全新最佳Windows 10 4K主题完整合集(哪个最好())