中国优质的IT技术网站
专业IT技术创作平台
IT职业在线教育平台
如何在页面中获取UIAbilityContext?
微信扫码分享
import { common } from '@kit.AbilityKit'; @Entry @Component struct Index { //获取UIAbilityContext private context = getContext(this) as common.UIAbilityContext; build() { Row() { Column() { } .width('100%') } .height('100%') } }