标签:android blog java 2014 re c res file
public class PxAndDp {
	/**
	 * 根据手机的分辨率从 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);
	}
}android中根据不同分辨率dp和px的相互转算,布布扣,bubuko.com
标签:android blog java 2014 re c res file
原文地址:http://blog.csdn.net/chenshijun0101/article/details/38119553