内容简介:如果你正准备从头开始制作一个新的应用,那么React Native会是个非常好的选择。但如果你只想给现有的原生应用中添加一两个视图或是业务流程,React Native也同样不在话下。只需简单几步,你就可以给原有应用加上新的基于React Native的特性、画面和视图等。这里把React Native组件植入到Android应用中有如下几个主要步骤:此处可参考我写的另一篇文章React Native环境搭建,(已有环境的,此处可选择跳过).
如果你正准备从头开始制作一个新的应用,那么React Native会是个非常好的选择。但如果你只想给现有的原生应用中添加一两个视图或是业务流程,React Native也同样不在话下。只需简单几步,你就可以给原有应用加上新的基于React Native的特性、画面和视图等。
1.核心概念
这里把React Native组件植入到Android应用中有如下几个主要步骤:
- 首先要了解你要植入的React Native组件。
- 在Android项目根目录中使用npm来安装
react-native
,这样同时会创建一个node_modules/
的目录。 - 创建js文件,编写React Native组件的js代码。
- 在
build.gradle
文件中添加com.facebook.react:react-native:+
,以及一个指向node_nodules/
目录中的react-native
预编译库的maven
路径。 - 创建一个React Native专属的
Activity
(可混合使用),在其中再创建ReactRootView
。 - 生成对应
bundle
文件,启动React Native的Packager服务,运行应用。 - 接下来可自由发挥,添加更多的React Native组件。
- 在真机上运行、调试(这里需要先更新
bundle
文件)。 - 打包。
2.开发环境准备
此处可参考我写的另一篇文章React Native环境搭建,(已有环境的,此处可选择跳过).
3.添加JS代码管理
- 在项目的根目录运行以下命令:
$ npm init $ npm install --save react react-native $ curl -o .flowconfig https://raw.githubusercontent.com/facebook/react-native/master/.flowconfig 复制代码
此时可在Android项目根目录下看到如下文件/文件夹: node_modules/
、 package.json
- 打开
package.json
文件,在scripts
属性下添加如下字段:
"start": "node node_modules/react-native/local-cli/cli.js start"
- 在根目录下新建js文件夹(存放React Native相关组件),index.android.js(RN启动文件)。 主要启动代码如下:
/** * Sample React Native App * https://github.com/facebook/react-native * @flow */ import {AppRegistry} from 'react-native'; import AwesomeProject from './js/AwesomeProject' //注册(只要一遍) AppRegistry.registerComponent('AwesomeProject', () => AwesomeProject); 复制代码
4.添加App开发准备操作
- 在你app的
build.gradle
文件内添加React Native
相关依赖:
compile 'com.facebook.react:react-native:+' // From node_modules.
- 在你工程
build.gradle
文件内添加本地React Native
maven库:
allprojects { repositories { jcenter() maven { // All of React Native (JS, Android binaries) is installed from npm url "$rootDir/node_modules/react-native/android" } } } 复制代码
注意事项:这里的url路径要写对,否则将出现如下错误: “Failed to resolve: com.facebook.react:react-native:0.x.x" errors after running Gradle sync in Android Studio.
-
AndroidManifest.xml
清单文件配置
- 如果你需要访问React Native的DevSettingsActivity,则需要注册
<activity android:name="com.facebook.react.devsupport.DevSettingsActivity" />
5.准备工作搞定:接下来添加原生代码
- 纯React Native页面主要代码(底部有完整代码地址)
package com.itingchunyu.reactnative.view; import android.os.Bundle; import android.support.v7.app.AppCompatActivity; import android.support.v7.appcompat.BuildConfig; import android.view.KeyEvent; import com.facebook.react.ReactInstanceManager; import com.facebook.react.ReactRootView; import com.facebook.react.common.LifecycleState; import com.facebook.react.modules.core.DefaultHardwareBackBtnHandler; import com.facebook.react.shell.MainReactPackage; /** * Created by liyanxi on 2016/12/13. * Copyright (c) itingchunyu@163.com. All rights reserved. */ public class MyReactActivity extends AppCompatActivity implements DefaultHardwareBackBtnHandler { private ReactRootView mReactRootView; private ReactInstanceManager mReactInstanceManager; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); mReactRootView = new ReactRootView(this); mReactInstanceManager = ReactInstanceManager.builder() .setApplication(getApplication()) .setBundleAssetName("index.android.bundle") //可远程地址 .setJSMainModuleName("index.android")//根目录下index.android.js文件 .addPackage(new MainReactPackage())//如果为true,则会启用诸如JS重新加载和调试之类的开发人员选项.反之打包 .setUseDeveloperSupport(true) .setInitialLifecycleState(LifecycleState.RESUMED) .build(); //'AwesomeProject'==>index.android.js 页面内注册名称,可根据自己随意调整 mReactRootView.startReactApplication(mReactInstanceManager, "AwesomeProject", null); setContentView(mReactRootView); } @Override protected void onPause() { super.onPause(); if (mReactInstanceManager != null) { mReactInstanceManager.onHostPause(this); } } @Override protected void onResume() { super.onResume(); if (mReactInstanceManager != null) { mReactInstanceManager.onHostResume(this, this); } } @Override protected void onDestroy() { super.onDestroy(); if (mReactInstanceManager != null) { mReactInstanceManager.onHostDestroy(this); } } @Override public boolean onKeyUp(int keyCode, KeyEvent event) { if (keyCode == KeyEvent.KEYCODE_MENU && mReactInstanceManager != null) { mReactInstanceManager.showDevOptionsDialog(); return true; } return super.onKeyUp(keyCode, event); } @Override public void invokeDefaultOnBackPressed() { super.onBackPressed(); } } 复制代码
- 原生和RN混合页面主要代码(底部有完整代码地址):
package com.itingchunyu.reactnative.view; import android.os.Bundle; import android.support.annotation.Nullable; import android.support.v7.app.AppCompatActivity; import android.support.v7.appcompat.BuildConfig; import android.widget.LinearLayout; import com.facebook.react.ReactInstanceManager; import com.facebook.react.ReactRootView; import com.facebook.react.common.LifecycleState; import com.facebook.react.shell.MainReactPackage; import com.itingchunyu.reactnative.R; /** * Created by liyanxi on 2016/12/13. * Copyright (c) itingchunyu@163.com. All rights reserved. */ public class HybridActivity extends AppCompatActivity { private ReactRootView mReactRootView; private ReactInstanceManager mReactInstanceManager; private LinearLayout layoutReactContainer; @Override protected void onCreate(@Nullable Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_second); mReactRootView = new ReactRootView(this); mReactInstanceManager = ReactInstanceManager.builder() .setApplication(getApplication()) .setBundleAssetName("index.android.bundle") .setJSMainModuleName("index.android") .addPackage(new MainReactPackage()) //如果为true,则会启用诸如JS重新加载和调试之类的开发人员选项.反之打包 .setUseDeveloperSupport(true) .setInitialLifecycleState(LifecycleState.RESUMED) .build(); mReactRootView.startReactApplication(mReactInstanceManager, "AwesomeProject", null); layoutReactContainer= (LinearLayout) findViewById(R.id.layout_react); layoutReactContainer.addView(mReactRootView); } } 复制代码
6.配置权限保证开发过程中红屏错误能正确展示
如果您的应用程式指定的Android API等级为23或更高,请确定您已为开发版本启用了重叠权限。您可以使用“设置”进行检查。 canDrawOverlays(this);.这在开发版本中是必需的,因为反应本地开发错误必须显示在所有其他窗口之上。由于在API级别23中引入了新的权限系统,用户需要批准它。这可以通过将下面的代码添加到onCreate()方法中的Activity文件来实现。 OVERLAY_PERMISSION_REQ_CODE是类的一个字段,它负责将结果传递回Activity。
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.M) { if (!Settings.canDrawOverlays(this)) { Intent intent = new Intent(Settings.ACTION_MANAGE_OVERLAY_PERMISSION, Uri.parse("package:" + getPackageName())); startActivityForResult(intent, OVERLAY_PERMISSION_REQ_CODE); } } 复制代码
最后,必须覆盖onActivityResult() 方法(如下面的代码所示)来处理一致性UX的权限接受或拒绝的情况。
@Override protected void onActivityResult(int requestCode, int resultCode, Intent data) { if (requestCode == OVERLAY_PERMISSION_REQ_CODE) { if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.M) { if (!Settings.canDrawOverlays(this)) { // SYSTEM_ALERT_WINDOW permission not granted... } } } } 复制代码
7.应用飞起来
- 启动服务器
React packager
$npm start(配合package.json文件 start
)
或者
$react-native start
- 启动App应用(看效果)
- 调试过程踩过的坑
启动ReactNative相关Activity页面崩溃
解决方案看代码截图:
此处红框内需要注意开发调试过程需要设置为true动态加载,false涉及到静态bundle文件,下面打包会单独讲。8.在Android Studio中打包apk
你也可以使用Android Studio来打包!You can use Android Studio to create your release builds too! It’s as easy as creating release builds of your previously-existing native Android app. There’s just one additional step, which you’ll have to do before every release build. You need to execute the following to create a React Native bundle, which’ll be included with your native Android app:
react-native bundle --platform android --dev false --entry-file ./index.android.js --bundle-output ./app/src/main/assets/index.android.bundle --assets-dest ./app/src/main/res/ 复制代码
上面主要意思是说在打包前不可避免的操作如下:
1.在根目录下执行上述命令,生成 React Native Activity页面bundle文件
,此处注意路径不要写错(这里是在 ./app/src/main/assets/
目录下生成对应 index.android.bundle
文件)
2.远程bundle文件(用于动态更新,这里暂不详解)
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持 码农网
猜你喜欢:- 在原生App中嵌入Flutter
- 在Flutter中嵌入原生View
- Flutter之在Flutter布局中嵌入原生组件Android篇
- 用go来做嵌入式开发-嵌入资源简化程序部署
- ActiveMQ嵌入Tomcat
- 词嵌入的那些事儿(一)
本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。
云计算安全与隐私
Tim Mather、Subra Kumaraswamy、Shahed Latif / 刘戈舟、杨泽明、刘宝旭 / 机械工业出版社华章公司 / 2011-6 / 65.00元
《云计算安全与隐私》可以使你明白当把数据交付给云计算时你所面临的风险,以及为了保障虚拟基础设施和网络应用程序的安全可以采取的行动。本书是由信息安全界知名专家所著,作者在书中给出许多中肯的忠告和建议。本书的读者对象包括:IT职员、信息安全和隐私方面的从业人士、业务经理、服务提供商,以及投资机构等。阅读本书你会了解直到现在还严重匮乏的云计算安全方面的详尽信息。 《云计算安全与隐私》主要内容包括:......一起来看看 《云计算安全与隐私》 这本书的介绍吧!