03.鸿蒙HarmonyOS卡片 状态栏透明和代码设置渐变色

1.状态栏透明和去掉标题栏

状态栏透明: WindowManager.getInstance().getTopWindow().get().addFlags(WindowManager.LayoutConfig.MARK_ALLOW_EXTEND_LAYOUT);去掉状态栏: getWindow().addFlags(WindowManager.LayoutConfig.MARK_FULL_SCREEN);去掉标题栏 “abilities“: [“metaData“:{ “customizeData“:[ { “name“: “hwc-theme“, “value“: “androidhwext:style/Theme.Emui.Light.NoTitleBar“, “extra“: ““ } ] }]

更多状态栏和导航栏处理:玩转HarmonyOS 状态栏&标题栏&导航栏相关操作方法整理

2.代码设置渐变色shape

03.鸿蒙HarmonyOS卡片 状态栏透明和代码设置渐变色 由于看到不能在shape直接设置渐变,所以找到一个公共方法去设置:

/** * 渐变色背景 */ public static ShapeElement getButtonShape(AbilityContext context, float radius, int resStartId, int resEndId) { ShapeElement shapeElement = new ShapeElement(); shapeElement.setCornerRadius(radius); shapeElement.setShape(ShapeElement.RECTANGLE); //color关键值 RgbColor[] rgbColors = new RgbColor[]{ RgbColor.fromArgbInt(context.getColor(resStartId)), RgbColor.fromArgbInt(context.getColor(resEndId))}; shapeElement.setRgbColors(rgbColors); //线性变化:对应type=“linear“ shapeElement.setShaderType(ShapeElement.LINEAR_GRADIENT_SHADER_TYPE); //变化方向,从左到右:对应angle=“0“ shapeElement.setGradientOrientation(ShapeElement.Orientation.LEFT_TO_RIGHT); return shapeElement; } /** * 通过id获取View */ public static <T extends Component> T findById(AbilitySlice context, int id) { return (T) context.findComponentById(id); }

使用:

Button btn_rectangle = (Button) findComponentById(ResourceTable.Id_bt_search_button);btn_rectangle.setBackground(ViewUil.getButtonShape(this, 54, ResourceTable.Color_btn_start_search, ResourceTable.Color_btn_end_search));

发现没有color文件,创建一个color.json文件: 03.鸿蒙HarmonyOS卡片 状态栏透明和代码设置渐变色 03.鸿蒙HarmonyOS卡片 状态栏透明和代码设置渐变色 得到对应的color文件:

{ “color“: [ { “name“: “btn_start_search“, “value“: “#D6A2FF“ }, { “name“: “btn_end_search“, “value“: “#AC69FD“ }, { “name“: “color_868686“, “value“: “#868686“ } ]}
极客网企业会员

免责声明:本网站内容主要来自原创、合作伙伴供稿和第三方自媒体作者投稿,凡在本网站出现的信息,均仅供参考。本网站将尽力确保所提供信息的准确性及可靠性,但不保证有关资料的准确性及可靠性,读者在使用前请进一步核实,并对任何自主决定的行为负责。本网站对有关资料所引致的错误、不确或遗漏,概不负任何法律责任。任何单位或个人认为本网站中的网页或链接内容可能涉嫌侵犯其知识产权或存在不实内容时,应及时向本网站提出书面权利通知或不实情况说明,并提供身份证明、权属证明及详细侵权或不实情况证明。本网站在收到上述法律文件后,将会依法尽快联系相关文章源头核实,沟通删除相关内容或断开相关链接。