支持下载和安装三方App吗?

支持下载和安装三方App吗?

HarmonyOS
2024-05-30 21:45:02
1310浏览
收藏 0
回答 1
回答 1
按赞同
/
按时间
chmqn

当前应用内下载其他应用,只能通过应用市场下载对应的App。应用跳转到对应的App的应用市场详情页。示例参考:

import Want from '@ohos.app.ability.Want'; 
import common from '@ohos.app.ability.common'; 
 
@Entry 
@Component 
struct Index { 
  @State appId: string = 'XXX'; 
  controller: TextInputController = new TextInputController(); 
  build() { 
    Row() { 
      Column() { 
        TextInput({ text: this.appId, placeholder: '请输入应用的appId', controller: this.controller }) 
          .width('90%') 
          .onChange((value: string) => { 
            this.appId = value 
          }) 
        Button('点击跳转到应用市场详情页面') 
          .margin({top: 50}) 
          .onClick(()=>{ 
            const want: Want = { 
              uri: `store://appgallery.example.com/app/detail?id=${this.appId}` 
            }; 
            const context = getContext(this) as common.UIAbilityContext; 
            context.startAbility(want).then(()=>{ 
              //拉起成功 
            }).catch(()=>{ 
              // 拉起失败 
            }); 
          }) 
      } 
      .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.
  • 30.
  • 31.
  • 32.
  • 33.
  • 34.
  • 35.
分享
微博
QQ
微信
回复
2024-05-31 21:10:02


相关问题
HarmonyOS 第三方应用安装卸载广播
1177浏览 • 0回复 待解决
api9不支持三方
3719浏览 • 1回复 待解决
HarmonyOS 第三方APP跳转
566浏览 • 1回复 待解决
HarmonyOS flutter三方支持问题
702浏览 • 1回复 待解决
HarmonyOS 通过scheme如何唤起三方APP
937浏览 • 1回复 待解决
HarmonyOS 如何启动第三方APP
662浏览 • 1回复 待解决
鸿蒙有哪些支持的第三方UI框架
4521浏览 • 1回复 待解决
OHPM包管理怎么安装三方
5426浏览 • 1回复 待解决
HarmonyOS 如何拉起第三方地图APP
673浏览 • 1回复 待解决
HarmonyOS app 有哪些常用的三方
1049浏览 • 1回复 待解决
HarmonyOS 三方本地module引用问题
1091浏览 • 1回复 待解决