美文网首页
android dp转px

android dp转px

作者: 小婷婷tt | 来源:发表于2018-05-16 14:07 被阅读0次

public static int dip2px(Context context,float dipValue) {

return (int) (dipValue * (getScreenDensity(context) /160f) +0.5f);

}

public static int px2dip(Context context,float pxValue) {

return (int) ((pxValue *160) /getScreenDensity(context));

}

public static float sp2px(Context context,float sp) {

return sp *getScreenScaledDensity(context);

}

public static float px2sp(Context context,float px) {

return px /getScreenScaledDensity(context) +0.5f;

}

@SuppressWarnings("deprecation")

public static int getScreenDensity(Context context) {

DisplayMetrics dm =new DisplayMetrics();

((Activity) context).getWindowManager().getDefaultDisplay()

.getMetrics(dm);

return dm.densityDpi;

}

/**

* get Screen Density

* @param context

* @return

*/

@SuppressWarnings("deprecation")

public static float getScreenScaledDensity(Context context) {

return context.getResources().getDisplayMetrics().scaledDensity;

}

调用举例:ViewUtils.dip2px(mContext,12);

相关文章

网友评论

      本文标题:android dp转px

      本文链接:https://www.haomeiwen.com/subject/chupdftx.html