#鸿蒙学习大百科#如何打开用户的账号中心?

如何打开用户的账号中心?

HarmonyOS
2024-10-23 09:53:15
浏览
收藏 0
回答 1
待解决
回答 1
按赞同
/
按时间
莫名瞄一眼
import { extendService } from '@kit.AccountKit';
import { hilog } from '@kit.PerformanceAnalysisKit';

@Entry
@Component
struct Index {
  build() {
    Column() {
      Button("打开账号中心").onClick(() => {
        try {
          extendService.startAccountCenter(getContext(this), (err) => {
            if (err) {
              hilog.error(0x0000, 'testTag', 'startAccountCenterWithCallback fail,error: %{public}s', JSON.stringify(err));
              return;
            }
            hilog.info(0x0000, 'testTag', 'startAccountCenterWithCallback success');
          });
        } catch (error) {
          hilog.error(0x0000, 'testTag', 'startAccountCenterWithCallback fail,error: %{public}s', JSON.stringify(error));
        }
      })
    }
    .width('100%')
    .height('100%')
    .justifyContent(FlexAlign.Center)
  }

}
分享
微博
QQ
微信
回复
2024-10-23 15:51:38
相关问题
#鸿蒙学习大百科#什么是用户文件?
164浏览 • 0回复 待解决