ResourceUtils

Posted z_fishLong

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ResourceUtils相关的知识,希望对你有一定的参考价值。

import android.content.Context;
import android.util.TypedValue;


public class ResourceUtils 

    private static TypedValue mTmpValue = new TypedValue();

    private ResourceUtils() 

    

    /**
     * 获取 dimens.xml 定义的文本的值
     * @param context
     * @param resourceId
     * @return if R.dimen.id defined is dp size return the dp size; if R.dimen.id defined is sp size
     *         return the sp size
     */
    public static int getDimenXmlDefSize(Context context, int resourceId) 
        synchronized (mTmpValue) 
            TypedValue value = mTmpValue;
            context.getResources().getValue(resourceId, value, true);
            return (int) TypedValue.complexToFloat(value.data);
        
    

    /**
     * px值转换为dipdp值,保证尺寸大小不变
     * 
     * @param context
     * @param pxValue
     * @return
     */
    public static int px2dip(Context context, float pxValue) 
        final float scale = context.getResources().getDisplayMetrics().density;
        return (int) (pxValue / scale + 0.5f);
    

    /**
     * dipdp值转换为px值,保证尺寸大小不变
     * 
     * @param dipValue
     * @param scale
     * @return
     */
    public static int dip2px(Context context, float dipValue) 
        final float scale = context.getResources().getDisplayMetrics().density;
        return (int) (dipValue * scale + 0.5f);
    

    /**
     * px值转换为sp值,保证文字大小不变
     * 
     * @param pxValue
     * @param fontScale
     * @return
     */
    public static int px2sp(Context context, float pxValue) 
        final float fontScale = context.getResources().getDisplayMetrics().scaledDensity;
        return (int) (pxValue / fontScale + 0.5f);
    

    /**
     * px值转换为sp值,保证文字大小不变
     * 
     * @param spValue
     * @param fontScale
     * @return
     */
    public static int sp2px(Context context, float spValue) 
        final float fontScale = context.getResources().getDisplayMetrics().scaledDensity;
        return (int) (spValue * fontScale + 0.5f);
    

以上是关于ResourceUtils的主要内容,如果未能解决你的问题,请参考以下文章

基于rem布局原理

如何优雅的将 图片文字上传至服务器?

Acrobat提示PDF页面大小超过最大尺寸,OCR识别文本失败

Python批量生成特定尺寸图片及图画任意文字

谷歌(google)广告尺寸大小列表

如何设置latex表格内的字体和大小