最新遇到一個須要從快應用跳轉到Android App的需求,如下記錄下實現的方式。java
<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>
router.push({uri:"hwphoneservice://externalapp/service"})
快應用push接口使用方法詳見API文檔:android
https://developer.huawei.com/consumer/cn/doc/development/quickApp-References/quickapp-api-routerapi
原文連接:https://developer.huawei.com/consumer/cn/forum/topic/0204411124509160358?fid=18app
原做者:Mayismide