当前位置: 首页 > article >正文

HarmonyOS使用arkTS拉起指定第三方应用程序

HarmonyOS使用arkTS拉起指定第三方应用程序

    • 前言
    • 代码及说明
        • bundleName获取
        • abilityName获取

前言

  • 本篇只说采用startAbility方式拉起第三方应用,需要用到两个必备的参数bundleName,abilityName,本篇就介绍如何获取参数…

代码及说明

bundleName获取

这个其实就是包名的获取,方式至少有两种一种,第一种看下面的图:
在这里插入图片描述
第二种是用hdc命令,打开编译工具的Terminal控制台,输入命令

hdc shell bm dump -a

在这里插入图片描述

abilityName获取

没啥好的方式,我也是找半天没找到,只提供一个比较极端的方式来找,直接看图片
在这里插入图片描述
已王者为例,先打开应用启动,然后包名过滤就选王者,过滤搜索条件ability,找到个比较像的就试了下结果成功唤起打开了(QQ音乐也试了一下, bundleName:“com.tencent.hm.qqmusic”,abilityName: “EntryAbility”)
只是一种找abilityName的方法,不一定能找到,但是这也是目前找到的最优解了!

笑哭…

最后附上完整代码(部分无用代码没整理):

import promptAction from '@ohos.promptAction';

import { BusinessError } from '@kit.BasicServicesKit';
import Logger from '../util/Logger'
import { common } from '@kit.AbilityKit';

const TAG: string = 'LogIndex'
const BUNDLE_NAME: string = 'com.example.myapplication'
const AUDIO_ABILITY_NAME: string = "EntryAbility"

@Entry
@Component
struct Index {
  @State message: string = 'Hello World';
  private context?: common.UIAbilityContext

  build() {
    RelativeContainer() {
      Text(this.message)
        .id('HelloWorld')
        .fontSize(50)
        .fontWeight(FontWeight.Bold)
        .alignRules({
          center: { anchor: '__container__', align: VerticalAlign.Center },
          middle: { anchor: '__container__', align: HorizontalAlign.Center }
        })
        .onClick(() => {
          promptAction.showToast({ message: "点击提示" })
          console.log("fadfasdfasfasdf")
        })
      Button("UI控件")
        .onClick(() => {
          Logger.info(TAG, 'onClick success')
          if (this.context) {
            this.context.startAbility({
              bundleName: BUNDLE_NAME,
              abilityName: AUDIO_ABILITY_NAME
            }).then(() => {
              Logger.info(TAG, 'start UI控件 ability success')
            }).catch((error: BusinessError) => {
              Logger.error(TAG, 'start UI控件 ability failed, error: ' + JSON.stringify(error))
            })
          }
        })

      Button("跳转")
        .margin({ top: 100, left: 100 })
        .onClick(() => {
          if (this.context) {
            this.context.startAbility({
              bundleName: "com.tencent.tmgp.sgamece.hw",
              abilityName: "SGameAbility"
            }).then(() => {
              Logger.info(TAG, 'start ability success')
            }).catch((error: BusinessError) => {
              Logger.error(TAG, 'start ability failed, error: ' + JSON.stringify(error))
            })
          }
        })
    }
    .height('100%')
    .width('100%')
  }

  aboutToAppear() {
    this.context = getContext(this) as common.UIAbilityContext
  }
}

http://www.kler.cn/a/382676.html

相关文章:

  • 【pycharm jupyter】远程开发 启动报错
  • K8S集群管理常用命令
  • # Ubuntu 达人九步养成记(1)
  • 基于梯度的快速准确头部运动补偿方法在锥束CT中的应用|文献速递-基于深度学习的病灶分割与数据超分辨率
  • 十四届蓝桥杯STEMA考试Python真题试卷第二套第一题
  • IDC报告解读:实用型靶场将成为下一代网络靶场的必然方向
  • 基于机器学习算法的中风患者数据分析与可视化预测设计与实现
  • 网络学习/复习4传输层UDP/TCP(协议属性详解、主机间连接状态详解)
  • Fsm serialdata
  • 练习LabVIEW第三十七题
  • 十二:java web(4)-- Spring核心基础
  • VS 中使用c#高版本语言方法
  • fs 中 rmSync 作用
  • 石墨舟氮气柜:半导体制造中的关键保护设备
  • 责任链模式 Chain of Responsibility
  • 【力扣打卡系列】单调栈
  • 熊猫追剧 1.0.0 | 免费追剧软件,全网资源,独家蓝光。
  • 传智杯 第六届-复赛-第二场-C
  • Vue全栈开发旅游网项目(8)-接口联调*2+用户登录
  • AI大模型如何重塑软件开发流程?
  • 工商业储能是什么,工商业储能有什么作用?
  • 作为一个前端开发者 以什么步骤学习后端技术
  • electron 设置最小窗口缩放
  • Java | Leetcode Java题解之第542题01矩阵
  • 高频面试题(含笔试高频算法整理)基本总结回顾32
  • RxJava最全面试题及参考答案