android px与dp(dip)的转换_移动开发_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > 移动开发 > android px与dp(dip)的转换

android px与dp(dip)的转换

 2013/9/17 2:46:28  listen342325  博客园  我要评论(0)
  • 摘要:方法一:Resourcesresources=getResources();floatfPx=TypedValue.applyDimension(TypedValue.COMPLEX_UNIT_DIP,300,resources.getDisplayMetrics());//intiPx=Math.round(fPx);//同理px转dip:floatfDip=TypedValue.applyDimension(TypedValue.COMPLEX_UNIT_PX,300,resources
  • 标签:android

方法一:

Resources resources = getResources();

float fPx = TypedValue.applyDimension(TypedValue.COMPLEX_UNIT_DIP, 300, resources.getDisplayMetrics());

//int iPx = Math.round(fPx);

// 同理 px转dip:
 float fDip = TypedValue.applyDimension(TypedValue.COMPLEX_UNIT_PX, 300, resources.getDisplayMetrics());
// int iDip = Math.round(fDip);

方法二:

/**
* 根据手机的分辨率从 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);
}

上一篇: iOS: 把对象直接转化成NSDictionary或JSON 下一篇: 没有下一篇了!
发表评论
用户名: 匿名