Harmony OS 中 Android 中视图 class 上的函数 setBackgroundColor() 的替代方案是什么?
What is the alternative in Harmony OS for function setBackgroundColor() on View class in Android?
我在做一个HarmonyOS项目,我想设置组件的背景颜色。在 Android 中,我们在视图 class 中有一个函数 setBackgroundColor()
,可以如下所示完成。
View titleLayout = view.findViewById(R.id.titleLayout);
titleLayout.setBackgroundColor(calendarTitleBackgroundColor);
HarmonyOS如何给组件设置背景颜色?
首先你必须使用一些颜色构建一个元素,
public static Element buildElementByColor(int color) {
ShapeElement drawable = new ShapeElement();
drawable.setShape(ShapeElement.RECTANGLE);
drawable.setRgbColor(RgbColor.fromArgbInt(color));
return drawable;
}
稍后您使用 setBackground 设置了内置元素 API
component.setBackground(buildElementByColor((Color.DKGRAY).getValue()));
@Gowtham GS的回答是正确的。我想补充一点:
在XML文件中定义组件时,也可以定义组件的背景色。属性是 background_element
.
例如:ohos:background_element="white"
我在做一个HarmonyOS项目,我想设置组件的背景颜色。在 Android 中,我们在视图 class 中有一个函数 setBackgroundColor()
,可以如下所示完成。
View titleLayout = view.findViewById(R.id.titleLayout);
titleLayout.setBackgroundColor(calendarTitleBackgroundColor);
HarmonyOS如何给组件设置背景颜色?
首先你必须使用一些颜色构建一个元素,
public static Element buildElementByColor(int color) {
ShapeElement drawable = new ShapeElement();
drawable.setShape(ShapeElement.RECTANGLE);
drawable.setRgbColor(RgbColor.fromArgbInt(color));
return drawable;
}
稍后您使用 setBackground 设置了内置元素 API
component.setBackground(buildElementByColor((Color.DKGRAY).getValue()));
@Gowtham GS的回答是正确的。我想补充一点:
在XML文件中定义组件时,也可以定义组件的背景色。属性是 background_element
.
例如:ohos:background_element="white"