36
47
415
请问在APP里用什么java代码 可以启动某个快应用
使用道具 举报
11
124
675
可以使用快应用的deeplink能力(https://developer.huawei.com/consumer/cn/doc/development/quickApp-Guides/quickapp-develop-deeplink-0000001079808096),
deeplink拉起第三方应用是android通用能力,示例代码如下:
String figerUrl="hap://app/com.router.replace.test/ThirdPage"; Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse(figerUrl)); startActivity(intent);
本版积分规则 发表回复 回帖后跳转到最后一页