在 android 上以编程方式将 sp 转换为像素
Convert sp to pixels programmatically on android
我需要在 Android 中以编程方式将可缩放像素 (sp) 转换为像素。我已经知道如何将dp转为像素,但是如何将sp转为像素?
您可以使用使用 TypeValue 的 Apply Dimen,如下所示。
public int spToPx(float sp, Context context) {
return (int) TypedValue.applyDimension(TypedValue.COMPLEX_UNIT_SP, sp, context.getResources().getDisplayMetrics());
}
,你可能会发现很多关于这个的讨论
我需要在 Android 中以编程方式将可缩放像素 (sp) 转换为像素。我已经知道如何将dp转为像素,但是如何将sp转为像素?
您可以使用使用 TypeValue 的 Apply Dimen,如下所示。
public int spToPx(float sp, Context context) {
return (int) TypedValue.applyDimension(TypedValue.COMPLEX_UNIT_SP, sp, context.getResources().getDisplayMetrics());
}