教你如何在快应用中跳转到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性能优化——之控件的优化 前面讲了图像的优化,接下...
前言 上一篇已经讲了如何实现textView中粗字体效果,里面主要...
最近项目重构,涉及到了数据库和文件下载,发现GreenDao这个...
WebView加载页面的两种方式 一、加载网络页面 加载网络页面,...
给APP全局设置字体主要分为两个方面来介绍 一、给原生界面设...
前言 最近UI大牛出了一版新的效果图,按照IOS的效果做的,页...