react native开发Android 篇——标题栏按钮的点击事件写法

react native开发Android 篇——标题栏按钮的点击事件写法

//标题
static navigationOptions = ({ navigation }) => ({
    headerRight: (
        <TouchableHighlight
            onPress={() => navigation.state.params.navigatePress()}
            underlayColor='rgba(0,0,0,0.2)'
        >
            <Text >保存</Text>
        </TouchableHighlight>
    ),*/
});
constructor(props) {
	super(props);
	this.saveInfo = this.saveInfo.bind(this);
}
componentDidMount() {
    this.props.navigation.setParams({ navigatePress: this.saveInfo});//这种写法只能定义一个事件,如果是多个按钮事件,只能触发写在最后的一个
}
saveInfo(){
}

你可能感兴趣的:(react-native)