动态设置dip sp

public static int getRawSizeDip(Context ctx,float value) {

Resources res = ctx.getResources();

return (int) TypedValue.applyDimension(TypedValue.COMPLEX_UNIT_DIP,

value, res.getDisplayMetrics());

}

public static int getRawSizeSp(Context ctx,float value) {

Resources res = ctx.getResources();

return (int) TypedValue.applyDimension(TypedValue.COMPLEX_UNIT_SP,

value, res.getDisplayMetrics());

}

你可能感兴趣的:(动态设置dip sp)