中国优质的IT技术网站
专业IT技术创作平台
IT职业在线教育平台
微信扫码分享
可以的,只需要提供对应的包名 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%') } }