迷雾白狐

  博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理
  /** 
* 根据手机的分辨率从 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);
}
posted on 2012-01-16 10:52  迷雾白狐  阅读(241)  评论(0编辑  收藏  举报