当前位置: 首页 > article >正文

ReactNative的环境搭建

写在前面

React Native (RN) 是一个由 Facebook 开发的开源框架,用于构建跨平台的移动应用程序。它允许开发者使用 JavaScript 和 React 来创建原生 iOS 和 Android 应用。RN 的出现极大地简化了移动应用的开发过程,使得开发者可以更快速、更高效地构建高质量的应用。

在本文中,我们将详细介绍如何搭建 RN 的开发环境、如何将 RN 集成到现有的原生应用中,以及如何将 RN 集成到 Android Fragment 中。我们还将提供一些有用的提示和技巧,帮助你顺利完成这些任务。

搭建 RN 开发环境

要开始使用 RN,首先需要安装 Node.js 和 npm。然后,使用以下命令安装 RN 的命令行工具:

npm install -g react-native-cli

接下来,创建一个新的 RN 项目:

react-native init MyProject

这将生成一个名为 MyProject 的新项目。进入项目目录并启动开发服务器:

cd MyProject
react-native start

在另一个终端窗口中,运行以下命令来启动模拟器或连接到一个真实的设备:

react-native run-ios
# 或者
react-native run-android

现在,你已经成功搭建了 RN 的开发环境,并可以开始构建你的应用了。

将 RN 集成到现有的原生应用中

如果你已经有一个原生应用,并想在其中添加一些 RN 组件,以下是实现这一目标的步骤:

iOS
  1. 在 Xcode 中打开你的项目。

  2. 在项目中添加一个新的文件夹,用于存放 RN 代码。

  3. 在这个文件夹中,使用以下命令创建一个新的 RN 项目:

    react-native init RNModule
    
  4. RNModule 项目中的 index.js 文件复制到你的原生应用的文件夹中。

  5. 在你的原生应用的 AppDelegate.m 文件中,导入 RCTRootViewRCTBridgeModule

    #import <React/RCTRootView.h>
    #import <React/RCTBridgeModule.h>
    
  6. application:didFinishLaunchingWithOptions: 方法中,添加以下代码来初始化 RN 模块:

    RCTBridge *bridge = [[RCTBridge alloc] initWithDelegate:self launchOptions:launchOptions];
    RCTRootView *rootView = [[RCTRootView alloc] initWithBridge:bridge
                                                moduleName:@"RNModule"
                                         initialProperties:nil];
    self.window.rootViewController = [[UIViewController alloc] initWithView:rootView];
    
  7. 在你的原生应用的 Info.plist 文件中,添加以下键值对:

    <key>RNModule</key>
    <string>index</string>
    
  8. 在你的原生应用的 AppDelegate.m 文件中,实现 RCTBridgeDelegate 协议的 sourceURLForBridge 方法:

    - (NSURL *)sourceURLForBridge:(RCTBridge *)bridge {
      return [NSURL URLWithString:@"http://localhost:8081/index.bundle?platform=ios"];
    }
    
  9. 运行你的原生应用,并在模拟器或真实设备上查看 RN 模块。

Android
  1. 在 Android Studio 中打开你的项目。

  2. 在项目中添加一个新的文件夹,用于存放 RN 代码。

  3. 在这个文件夹中,使用以下命令创建一个新的 RN 项目:

    react-native init RNModule
    
  4. RNModule 项目中的 index.js 文件复制到你的原生应用的文件夹中。

  5. 在你的原生应用的 MainActivity.java 文件中,导入 ReactActivityReactPackage

    import com.facebook.react.ReactActivity;
    import com.facebook.react.ReactPackage;
    
  6. MainActivity 类中,添加以下代码来初始化 RN 模块:

    @Override
    protected void onCreate(Bundle savedInstanceState) {
      super.onCreate(savedInstanceState);
      setContentView(R.layout.activity_main);
    
      ReactRootView reactRootView = new ReactRootView(this);
      ReactInstanceManager reactInstanceManager = ReactInstanceManager.builder()
       .setApplication(getApplication())
       .setBundleUrl("http://localhost:8081/index.bundle?platform=android")
       .addPackage(new MainReactPackage())
       .setInitialLifecycleState(LifecycleState.RESUMED)
       .build();
      reactRootView.startReactApplication(reactInstanceManager, "RNModule", null);
      setContentView(reactRootView);
    }
    
  7. 在你的原生应用的 AndroidManifest.xml 文件中,添加以下权限:

    <uses-permission android:name="android.permission.INTERNET" />
    
  8. 运行你的原生应用,并在模拟器或真实设备上查看 RN 模块。

将 RN 集成到 Android Fragment 中

如果你想在一个 Android Fragment 中使用 RN 组件,以下是实现这一目标的步骤:

  1. 在你的 Android 项目中,创建一个新的 Fragment 类,例如 RNFragment

  2. RNFragment 类中,添加以下代码来初始化 RN 模块:

    @Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
      ReactRootView reactRootView = new ReactRootView(getContext());
      ReactInstanceManager reactInstanceManager = ReactInstanceManager.builder()
       .setApplication(getActivity().getApplication())
       .setBundleUrl("http://localhost:8081/index.bundle?platform=android")
       .addPackage(new MainReactPackage())
       .setInitialLifecycleState(LifecycleState.RESUMED)
       .build();
      reactRootView.startReactApplication(reactInstanceManager, "RNModule", null);
      return reactRootView;
    }
    
  3. 在你的主 Activity 中,添加以下代码来将 RNFragment 添加到布局中:

    @Override
    protected void onCreate(Bundle savedInstanceState) {
      super.onCreate(savedInstanceState);
      setContentView(R.layout.activity_main);
    
      FragmentManager fragmentManager = getSupportFragmentManager();
      FragmentTransaction fragmentTransaction = fragmentManager.beginTransaction();
      fragmentTransaction.replace(R.id.container, new RNFragment());
      fragmentTransaction.commit();
    }
    
  4. 在你的布局文件中,添加一个 FrameLayout 用于容纳 RNFragment

    <FrameLayout
        android:id="@+id/container"
        android:layout_width="match_parent"
        android:layout_height="match_parent" />
    
  5. 运行你的应用,并在模拟器或真实设备上查看 RN 组件。

总结

在本文中,我们详细介绍了如何搭建 RN 的开发环境、如何将 RN 集成到现有的原生应用中,以及如何将 RN 集成到 Android Fragment 中。我们还提供了一些有用的提示和技巧,帮助你顺利完成这些任务。通过掌握这些知识,你可以更好地利用 RN 的强大功能,构建出高质量的移动应用。


http://www.kler.cn/a/401932.html

相关文章:

  • php消息路由
  • Gin路由深入
  • NavVis VLX3的精度怎么去进行验证?【上海沪敖3D】
  • Flutter 扫描二维码
  • MyBatis Plus中的@TableId注解
  • 移动应用开发:使用Android Studio 实现登录页与注册页跳转
  • POI和easyExcel的讲解和使用
  • 最少前缀操作问题--感受不到动态规划,怎么办怎么办
  • 动态Tab导航
  • STM32G4的数模转换器(DAC)功能介绍
  • Linux-shell实例手册-服务操作
  • 基于YOLOv8深度学习的智慧农业猪行为检测系统研究与实现(PyQt5界面+数据集+训练代码)
  • SpringSecurity+jwt+captcha登录认证授权总结
  • ARM CCA机密计算安全模型之简介
  • 网络IPC:套接字汇总整理
  • 2411rust,编译时自动检查配置
  • 贴代码框架PasteForm特性介绍之select,selects,lselect和reload
  • Python入门(9)--类与对象基础
  • 30. 并发编程
  • Go 编译代码-分平台编译
  • Kubernetes配置管理ConfigMap、Secret
  • 51单片机基础01 单片机最小系统
  • freemarker 读取template.xml ,通过response 输出文件,解决中文乱码问题
  • 【大选】2024年美国总统选举数据分析可视化
  • HbuilderX的使用
  • 从零开始学习JVM(九)- 垃圾收集器