共计 920 个字符,预计需要花费 3 分钟才能阅读完成。
最新遇到一个须要从快利用跳转到 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
原文链接:https://developer.huawei.com/consumer/cn/forum/topic/0204411124509160358?fid=18
原作者:Mayism
正文完