教你如何在快应用中跳转到Android的app

Posted 华为开发者论坛

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了教你如何在快应用中跳转到Android的app相关的知识,希望对你有一定的参考价值。

最新遇到一个需要从快应用跳转到android App的需求,以下记录下实现的方式。

  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文档:

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

以上是关于教你如何在快应用中跳转到Android的app的主要内容,如果未能解决你的问题,请参考以下文章

如何从微信浏览器中跳转到APP指定页面?

Google Play从 Android 应用中跳转到 Google Play 中 ( 跳转代码示例 | Google Play 页面的链接格式 | Google Play 免安装体验 )

从手机浏览器或者 APP 中跳转到微信并跳转到指定页原理及行业内幕详解

如何从一个activity中跳转到一个fragment

iOS-获取苹果商店iPhone应用程序编号APPID-应用中跳转到AppStore中的其他应用

如何在 STM32 F072 的软件中跳转到引导加载程序(DFU 模式)?