当前位置:   article > 正文

react native Android启动页面、修改图标、修改名字、修复启动白屏_react native 热更新修改图标

react native 热更新修改图标

给Android添加启动页

实现启动页基本有三种思路:
  • 使用RN开源组件;
  • 原生java编写;
  • 模拟启动页,这种方法基本就是replace路由栈;http://www.jianshu.com/p/da658aceeb44

我们之所以设置启动页,很大一部分原因是在启动页显示的背后可以利用宝贵的时间来初始化我们的应用,启动页消失后,初始化的工作就应该做完。因此,使用开源RN组件是比较靠谱的,闲言少叙,直奔主题!

我们使用rn-splash-screen组件,其他组件比如react-native-splash-screenreact-native-splashscreen等配置过程都会出现很多坑,只有这个坑最少。
当然了,react-native-splash-screen还是星星最多的,只不过初次配置太多问题了,以后有时间再回来收拾他。
使用步骤:
  1. 安装 npm install --save rn-splash-screen
  2. 连接 react-native link rn-splash-screen
  3. 在res文件中新建drawable文件夹,放置splash.png;
  4. 修改android/app/src/main/res/values/styles.xml文件,添加一行:
    1. <style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">
    2. + <item name="android:windowBackground">@drawable/splash</item>
    3. </style>
    5.修改android/app/src/main/AndroidManifest.xml文件:
  1. android:name=".MainApplication"
  2. android:allowBackup="true"
  3. android:label="@string/app_name"
  4. - android:icon="@mipmap/ic_launcher"
  5. - android:theme="@style/AppTheme">
  6. + android:icon="@mipmap/ic_launcher">
  7. <activity
  8. android:name=".MainActivity"
  9. android:label="@string/app_name"
  10. + android:theme="@style/AppTheme"
  11. android:configChanges="keyboard|keyboardHidden|orientation|screenSize">
  12. <intent-filter>
  13. <action android:name="android.intent.action.MAIN" />

6.修改android/app/src/main/java/com/APPNAMES/MainActivity.java文件:

  1. import android.graphics.Color;
  2. import android.os.Bundle;
  3. import com.facebook.react.ReactInstanceManager;
  4. import com.facebook.react.bridge.ReactContext;
  5. import com.mehcode.reactnative.splashscreen.SplashScreen;
  6. public class MainActivity extends ReactActivity {
  7. // [...]
  8. @Override
  9. protected void onCreate(Bundle savedInstanceState) {
  10. // Show the js-controlled splash screen
  11. SplashScreen.show(this, getReactInstanceManager());
  12. super.onCreate(savedInstanceState);
  13. // [...]
  14. }
  15. // [...]
  16. }

7.在入口文件中测试:

rn-splash-screen提供了两个API,open()和hide()。

  1. /**
  2. * Sample React Native App
  3. * https://github.com/facebook/react-native
  4. * @flow
  5. */
  6. import React, { Component } from 'react';
  7. import {
  8. AppRegistry,
  9. StyleSheet,
  10. Text,
  11. View
  12. } from 'react-native';
  13. // 引入引导页组件
  14. import SplashScreen from 'rn-splash-screen';
  15. export default class splashTest extends Component {
  16. constructor(props){
  17. super(props);
  18. this.state = {};
  19. }
  20. componentDidMount() {
  21. setTimeout(() => {
  22. SplashScreen.hide();
  23. }, 2000);
  24. }
  25. render() {
  26. return (
  27. <View style={styles.container}>
  28. <Text style={styles.welcome}>
  29. Welcome to React Native!
  30. </Text>
  31. </View>
  32. );
  33. }
  34. }
  35. const styles = StyleSheet.create({
  36. container: {
  37. flex: 1,
  38. justifyContent: 'center',
  39. alignItems: 'center',
  40. backgroundColor: '#F5FCFF',
  41. },
  42. welcome: {
  43. fontSize: 20,
  44. textAlign: 'center',
  45. margin: 10,
  46. },
  47. instructions: {
  48. textAlign: 'center',
  49. color: '#333333',
  50. marginBottom: 5,
  51. },
  52. });
  53. AppRegistry.registerComponent('splashTest', () => splashTest);

注意:react-native run-android过程中很一直报错,如果按照以上方法修改的话,是没有问题的(RN 0.43),有效的办法是编译之前删除android\app\build文件夹下的四个文件夹,这样就不会重复报错了。

修改APP的名称

很简单,我们直接打开android/app/src/main/res/values/strings.xml,即可看到配置中的app_name,修改为你想要的即可:

  1. <resources>
  2. <string name="app_name">随遇而安</string>
  3. </resources>

修改App的图标

也很简单,在android\app\src\main\res\mipmap-xxxxxx中直接覆盖图标就可以,注意图标的大小。

最终效果图:


app.gif

修复Android启动白屏的问题,后续会加上,敬请期待。。。。。

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小蓝xlanll/article/detail/134180?site
推荐阅读
相关标签
  

闽ICP备14008679号