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

RelativeLayout用到的一些主要的属性

2013-08-01 
RelativeLayout用到的一些重要的属性http://www.apkbus.com/android-830-1-1.htmlpublic static int dip2p

RelativeLayout用到的一些重要的属性
http://www.apkbus.com/android-830-1-1.html
public static int dip2px(Context context, float dipValue){?
??????????????? final float scale = context.getResources().getDisplayMetrics().density;?
??????????????? return (int)(dipValue * scale + 0.5f);?
??????? }?
????????
??? public static int px2dip(Context context, float pxValue){?
??????????????? final float scale = context.getResources().getDisplayMetrics().density;?
??????????????? return (int)(pxValue / scale + 0.5f);?
??????? }?

热点排行