博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
PixelUtils:像素转换工具
阅读量:6121 次
发布时间:2019-06-21

本文共 2714 字,大约阅读时间需要 9 分钟。

/** 像素转换工具 */public class PixelUtils {    /**     * The context.     */    private static Context mContext = CustomApplcation.getInstance();    /**     * dp转 px.     *     * @param value the value     * @return the int     */    public static int dp2px(float value) {        final float scale = mContext.getResources().getDisplayMetrics().densityDpi;        return (int) (value * (scale / 160) + 0.5f);    }    /**     * dp转 px.     *     * @param value   the value     * @param context the context     * @return the int     */    public static int dp2px(float value, Context context) {        final float scale = context.getResources().getDisplayMetrics().densityDpi;        return (int) (value * (scale / 160) + 0.5f);    }    /**     * px转dp.     *     * @param value the value     * @return the int     */    public static int px2dp(float value) {        final float scale = mContext.getResources().getDisplayMetrics().densityDpi;        return (int) ((value * 160) / scale + 0.5f);    }    /**     * px转dp.     *     * @param value   the value     * @param context the context     * @return the int     */    public static int px2dp(float value, Context context) {        final float scale = context.getResources().getDisplayMetrics().densityDpi;        return (int) ((value * 160) / scale + 0.5f);    }    /**     * sp转px.     *     * @param value the value     * @return the int     */    public static int sp2px(float value) {        Resources r;        if (mContext == null) {            r = Resources.getSystem();        } else {            r = mContext.getResources();        }        float spvalue = value * r.getDisplayMetrics().scaledDensity;        return (int) (spvalue + 0.5f);    }    /**     * sp转px.     *     * @param value   the value     * @param context the context     * @return the int     */    public static int sp2px(float value, Context context) {        Resources r;        if (context == null) {            r = Resources.getSystem();        } else {            r = context.getResources();        }        float spvalue = value * r.getDisplayMetrics().scaledDensity;        return (int) (spvalue + 0.5f);    }    /**     * px转sp.     *     * @param value the value     * @return the int     */    public static int px2sp(float value) {        final float scale = mContext.getResources().getDisplayMetrics().scaledDensity;        return (int) (value / scale + 0.5f);    }    /**     * px转sp.     *     * @param value   the value     * @param context the context     * @return the int     */    public static int px2sp(float value, Context context) {        final float scale = context.getResources().getDisplayMetrics().scaledDensity;        return (int) (value / scale + 0.5f);    }}

转载地址:http://rlgka.baihongyu.com/

你可能感兴趣的文章
STM32启动过程--启动文件--分析
查看>>
垂死挣扎还是涅槃重生 -- Delphi XE5 公布会归来感想
查看>>
淘宝的几个架构图
查看>>
Android扩展 - 拍照篇(Camera)
查看>>
JAVA数组的定义及用法
查看>>
充分利用HTML标签元素 – 简单的xtyle前端框架
查看>>
设计模式(十一):FACADE外观模式 -- 结构型模式
查看>>
iOS xcodebuile 自动编译打包ipa
查看>>
程序员眼中的 SQL Server-执行计划教会我如何创建索引?
查看>>
【BZOJ】1624: [Usaco2008 Open] Clear And Present Danger 寻宝之路(floyd)
查看>>
cmake总结
查看>>
数据加密插件
查看>>
linux后台运行程序
查看>>
win7 vs2012/2013 编译boost 1.55
查看>>
IIS7如何显示详细错误信息
查看>>
C++文件读写详解(ofstream,ifstream,fstream)
查看>>
Android打包常见错误之Export aborted because fatal lint errors were found
查看>>
Tar打包、压缩与解压缩到指定目录的方法
查看>>
新手如何学习 jQuery?
查看>>
配置spring上下文
查看>>