首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 移动开发 > Android >

Android中px跟dip的转换代码

2012-09-29 
Android中px和dip的转换代码?转换:/** * 根据手机的分辨率从 dp 的单位 转成为 px(像素) */public static

Android中px和dip的转换代码

?

转换:

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

?

使用:

TabHost mTabHost = (TabHost) findViewById(android.R.id.tabhost);mTabHost.getTabWidget().getChildAt(i).getLayoutParams().height = dip2px(this, 60);

?

?注:dip等同dp

?

热点排行