为了账号安全,请及时绑定邮箱和手机立即绑定

React Native Linking与 Android原生页面路由跳转问题

标签:
React.JS
  • Linking 唤起APP.

    • 检查该app能否被唤起,也就是检查该app是否已安装成功;
      Linking提供了canOpenURL(url: string): Promise<boolean>;这个方法,用来检测某个url是否可以打开;

       Linking.canOpenURL('appscheme://').then(canopen => {
            ...
          })
    • 唤起并传递参数。
      使用Linking打开app调用openURL方法即可:
      Linking.openURL('appscheme://apphost/path?params=xxx')
      完整调用方法如下:

      Linking.canOpenURL('appscheme://').then(canopen => {  if (canopen) {     console.warn('可以打开: appscheme');
           Linking.openURL('appscheme://apphost/path?rn=true')
        } else {     console.warn('未安装: appscheme');
        }
      })

      备注: Android人员应该知道上述打开的路由appscheme://apphost/path?rn=true 哪里来的,非Android应该不太清楚,其实这里的路由是我们在Android项目中的AndroidManifest.xml 文件中设置的,如下:

      <activity android:name=".RNPreloadActivity"
           android:launchMode="singleTask">
           <intent-filter>
                <data
                     android:host="apphost"
                     android:scheme="appscheme"/>
                 <action android:name="android.intent.action.VIEW"/>
                 <category android:name="android.intent.category.DEFAULT"/>
                 <category android:name="android.intent.category.BROWSABLE"/>
           </intent-filter>
       </activity>
  • APP中唤起RN页面的Activity,并将路由信息通过linking传递到对应的js中。

    • APP中跳转加载RN的页面。

      Intent intent1 = new Intent(Intent.ACTION_VIEW, Uri.parse("appscheme://apphost/path?params=xxx"));
      startActivity(intent1);
    • RN页面渲染的js文件中如何获取跳转路由。

           Linking.getInitialURL().then((url) => {          if (url) {            console.warn('捕捉的URL地址为: ' + url);
                }else{            console.warn('捕获得的url为空');
                }
           }).catch(err => console.error('错误信息为:', err));
    • 在js中监听APP的运行状态。

           AppState.addEventListener('change',(appState)=>{          if(appState=='active'){
                    Linking.getInitialURL().then(url=>{                  console.warn('stateChange url: ' + url);    
                    })
                }
              })

      监听的字符串以及状态如下:

      export type AppStateEvent = "change" | "memoryWarning";export type AppStateStatus = "active" | "background" | "inactive";



作者:闲庭CC
链接:https://www.jianshu.com/p/137ccdd943ae


点击查看更多内容
TA 点赞

若觉得本文不错,就分享一下吧!

评论

作者其他优质文章

正在加载中
  • 推荐
  • 评论
  • 收藏
  • 共同学习,写下你的评论
感谢您的支持,我会继续努力的~
扫码打赏,你说多少就多少
赞赏金额会直接到老师账户
支付方式
打开微信扫一扫,即可进行扫码打赏哦
今天注册有机会得

100积分直接送

付费专栏免费学

大额优惠券免费领

立即参与 放弃机会
意见反馈 帮助中心 APP下载
官方微信

举报

0/150
提交
取消