页面滑动过程中动态修改状态栏文字颜色

状态栏文字图标颜色是否支持动态修改。

HarmonyOS
2024-09-23 12:07:54
浏览
收藏 0
回答 1
待解决
回答 1
按赞同
/
按时间
zxjiu

可以使用import window from ‘@ohos.window’; 中的SystemBarProperties属性修改状态栏的颜色,根据监听对应的滑动时间,然后做出对应的颜色修改

demo如下,仅供参考:

import measure  from '@ohos.measure'  
import window from '@ohos.window';  
  
@Entry  
@Component  
struct MeasureDemo {  
  @State message: string = 'Hello World';  
  private scrollerForList: Scroller = new Scroller()  
  private arr: number[] = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]  
  @State measure: SizeOptions = measure.measureTextSize({  
    textContent: this.message,  
  })  
  
  build() {  
    Row() {  
      Column() {  
        Text(this.message)  
          .fontSize(50)  
          .fontWeight(FontWeight.Bold)  
  
        Text('测试文本宽度:' + this.measure.width)  
        Text('测试文本高度:' + this.measure.height)  
  
        Button("onclick").onClick(() => {  
          window.getLastWindow(getContext(this), (err, win) => {  
            win.setWindowSystemBarProperties({statusBarContentColor : '#ff00ff'})  
          })  
        })  
  
        List({ space: 20, scroller: this.scrollerForList }) {  
          ForEach(this.arr, (item: number) => {  
            ListItem() {  
              Text("ListItem" + item)  
                .width("100%")  
                .height("100%")  
                .borderRadius(15)  
                .fontSize(16)  
                .textAlign(TextAlign.Center)  
                .backgroundColor(Color.White)  
            }.width("100%").height(100)  
          }, (item: string) => item)  
        }  
        .width("100%")  
        .height("50%")  
        .edgeEffect(EdgeEffect.None)  
        .friction(0.6)  
        .onScroll(() => {  
          window.getLastWindow(getContext(this), (err, win) => {  
            win.setWindowSystemBarProperties({statusBarContentColor : '#ff00ff'})  
          })  
  
        })  
      }  
      .width('100%')  
    }  
    .height('100%')  
    .backgroundColor(Color.Pink)  
  }  
}
分享
微博
QQ
微信
回复
2024-09-23 17:14:13
相关问题
鸿蒙怎么 修改状态栏字体颜色
12186浏览 • 1回复 待解决
HarmonyOS 修改状态栏颜色不生效
172浏览 • 1回复 待解决
如何设置状态栏和导航颜色
2774浏览 • 1回复 待解决
状态栏设置颜色失效该怎么办啊?
1816浏览 • 1回复 待解决
设置状态栏颜色不起作用怎么回事?
2319浏览 • 1回复 待解决
沉侵式状态栏获取状态栏高度为0
275浏览 • 1回复 待解决
HarmonyOS 关于ArkUI状态栏的问题
224浏览 • 1回复 待解决
获取状态栏与导航高度
501浏览 • 1回复 待解决
如何获取状态栏和导航高度
2815浏览 • 1回复 待解决