#鸿蒙通关秘籍#能直接跳转到设置页面吗?比如我想要跳转到应用权限管理页面什么的

HarmonyOS
2024-12-12 11:02:43
浏览
收藏 0
回答 1
回答 1
按赞同
/
按时间
数据小天使
可以的,只需要提供对应的包名
import { common } from '@kit.AbilityKit';

@Entry
@Component
struct SystemPage {

@State message: string = 'Hello World';

build() {
Row() {
Column() {
Text(`this.message`)
.fontSize(50)
.fontWeight(FontWeight.Bold)

Button("跳转到设置").onClick(()=>{
let context = getContext(this) as common.UIAbilityContext;
context.startAbility({
bundleName: 'com.huawei.hmos.settings',
abilityName: 'com.huawei.hmos.settings.MainAbility',
}); //
})
}
.width('100%')
}
.height('100%')
}
}
  • 1.
  • 2.
  • 3.
  • 4.
  • 5.
  • 6.
  • 7.
  • 8.
  • 9.
  • 10.
  • 11.
  • 12.
  • 13.
  • 14.
  • 15.
  • 16.
  • 17.
  • 18.
  • 19.
  • 20.
  • 21.
  • 22.
  • 23.
  • 24.
  • 25.
  • 26.
  • 27.
  • 28.
  • 29.
分享
微博
QQ
微信
回复
2024-12-12 12:24:06


相关问题
js跳转到java写页面
11031浏览 • 1回复 待解决
HarmonyOS 如何跳转到应用设置页面
1040浏览 • 1回复 待解决
如何跳转到设置应用详情页面
2855浏览 • 1回复 待解决
如何跳转到APP设置页和权限管理页?
1546浏览 • 1回复 待解决
HarmonyOS 跳转到系统设置页面的方法
1044浏览 • 1回复 待解决
HarmonyOS 跳转到设置->通知管理方法
503浏览 • 1回复 待解决
如何跳转到WIFI列表页面
1128浏览 • 1回复 待解决
HarmonyOS 怎么跳转到系统页面
808浏览 • 1回复 待解决
如何跳转到应用市场app下载页面
8569浏览 • 1回复 待解决
如何跳转到系统发送短信页面
3012浏览 • 1回复 待解决
HarmonyOS如何跳转到发短信页面
1410浏览 • 1回复 待解决
恭喜您,今日已阅读两篇内容,特奖励+2声望, 快来领取吧。