android_图片px转dp
</pre><pre name="code" class="java">package com.lengxiaocai.myutil.screentool; import android.content.Context; /** * * @ClassName: ScreenTool * * @Description: 屏幕像素检测 * * @author yazhizhao * * @date 2014-5-6 上午11:47:07 */ public class ScreenTool { public static int dip2px(Context context, float dpValue) { final float scale = context.getResources().getDisplayMetrics().density; return (int) (dpValue * scale + 0.5f); } public static int px2dip(Context context, float pxValue) { final float scale = context.getResources().getDisplayMetrics().density; return (int) (pxValue / scale + 0.5f); } public static int px2sp(float pxValue, float fontScale) { return (int) (pxValue / fontScale + 0.5f); } public static int sp2px(float spValue, float fontScale) { return (int) (spValue * fontScale + 0.5f); } }
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。