首页 > 解决方案 > React-Native Native Android 模块 - Toast 示例

问题描述

我正在尝试学习使用 android 本机模块并使用 react-native 文档中的 toast 示例。(https://facebook.github.io/react-native/docs/native-modules-android)。但是,我面临一个问题,即我试图导出的本机模块无法解析/取消定义。

我的目录结构如下:

example
 -android
   -app
     -src
       -main
        - java
          -com
           -example
             -CustomToastPackage.java
             -ToastModule.java
             -MainActivity.java
             -MainApplication.java
        - res
        - AndroidManifest.xml
 -ios
 -app.js
 -index.js
 -package.json

我的 index.js:

import {AppRegistry} from 'react-native';
import App from './App';
import {name as appName} from './app.json';

import {NativeModules} from 'react-native';//Added this

module.exports = NativeModules.ToastAndroidTutorial;//Added this

AppRegistry.registerComponent(appName, () => App);

还有我的 App.js

import React, {Component} from 'react';
import {Platform, StyleSheet, Text, View} from 'react-native';

import ToastExample from './ToastExample';//Added this


const instructions = Platform.select({
ios: 'Press Cmd+R to reload,\n' + 'Cmd+D or shake for dev menu',
  android:
  'Double tap R on your keyboard to reload,\n' +
  'Shake or press menu button for dev menu',
});

type Props = {};
export default class App extends Component<Props> {
 render() {
  return (
  <View style={styles.container}>

     ToastExample.show('Awesome', ToastExample.SHORT);//Added this

    <Text style={styles.welcome}>Welcome to React Native!</Text>
    <Text style={styles.instructions}>To get started, edit App.js</Text>
    <Text style={styles.instructions}>{instructions}</Text>
     </View>
   );
  }
 }

const styles = StyleSheet.create({
container: {
flex: 1,
justifyContent: 'center',
alignItems: 'center',
backgroundColor: '#F5FCFF',
},
welcome: {
fontSize: 20,
textAlign: 'center',
margin: 10,
},
  instructions: {
textAlign: 'center',
color: '#333333',
marginBottom: 5,
  },
  });

这是我得到的错误。

在此处输入图像描述

标签: androidreact-nativereact-native-android

解决方案


根据您显示的代码,这是因为您没有正确导入模块,您应该在同一目录中App.js创建一个名为的文件,然后放置ToastExample.jsApp.js

import {NativeModules} from 'react-native';
module.exports = NativeModules.ToastExample;

如果ToastModule.java你有

@Override
  public String getName() {
    return "ToastExample";
  }

getName()方法上。


推荐阅读