回复
教程:在快应用中跳转到Android app
footballboy
发布于 2021-4-9 18:31
浏览
0收藏
最新遇到一个需要从快应用跳转到Android App的需求,以下记录下实现的方式。
在需要跳转的目标安卓App的activity中添加对外的schema,示例代码如下:
<activity
android:label="@7F070043"
android:name="com.huawei.phoneservice.HelpCenterActivity"
android:exported="true"
android:excludeFromRecents="true"
android:launchMode="2"
android:configChanges="0x40002D84">
<intent-filter>
<action android:name="android.intent.action.VIEW"></action>
<category android:name="android.intent.category.DEFAULT"> </category>
<category android:name="android.intent.category.BROWSABLE"></category>
<data android:scheme="hwphoneservice" android:host="externalapp"></data>
</intent-filter>
</activity>
在快应用中通过system.router.push接口调用跳转,即router.push接口传入上步配置的schema:
router.push({uri:"hwphoneservice://externalapp/service"})
快应用push接口使用方法详见API文档:https://developer.huawei.com/consumer/cn/doc/development/quickApp-References/quickapp-api-router
分类
标签
已于2021-4-9 18:31:29修改
赞
收藏
回复
相关推荐