教你如何在快應用中跳轉到Android的app

最新遇到一個須要從快應用跳轉到Android App的需求,如下記錄下實現的方式。java

  1. 在須要跳轉的目標安卓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>
  1. 在快應用中經過system.router.push接口調用跳轉,即router.push接口傳入上步配置的schema:
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

相關文章
相關標籤/搜索