在 Harmony OS 中 1px 相对于 fp 是多少?
How much 1px is with respect to fp in Harmony OS?
任何人都可以告诉 px:fp 比率或代码将 fp 转换为 px。
我正在构建 HarmonyOS 应用程序,我想将组件的宽度设置为 20fp,但 setWidth(int width)
以 px 为单位。
Button button = new Button(getContext());
button.setWidth(width);
HarmonyOS提供AttrHelper
工具class实现fp和px的转换
AttrHelper.fp2px()
更多详情,请参考此Docs。
任何人都可以告诉 px:fp 比率或代码将 fp 转换为 px。
我正在构建 HarmonyOS 应用程序,我想将组件的宽度设置为 20fp,但 setWidth(int width)
以 px 为单位。
Button button = new Button(getContext());
button.setWidth(width);
HarmonyOS提供AttrHelper
工具class实现fp和px的转换
AttrHelper.fp2px()
更多详情,请参考此Docs。