【问题标题】:React-Native Native Android Module - Toast ExampleReact-Native Native Android 模块 - Toast 示例
【发布时间】:2018-08-11 14:20:55
【问题描述】:

我正在尝试学习使用 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,
  },
  });

这是我遇到的错误。

【问题讨论】:

标签: android react-native react-native-android


【解决方案1】:

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

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

如果在您的ToastModule.java 中有

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

关于getName() 方法。

【讨论】:

  • 啊,我现在明白了。我将这些语句放在 index.js 中,这是不正确的。现在一切都说得通了。感谢您明确的回答!
猜你喜欢
  • 1970-01-01
  • 2022-11-30
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 2021-12-06
  • 1970-01-01
  • 1970-01-01
相关资源
最近更新 更多