谁能帮我。这是我的源代码:https : //snack.expo.io/rJFgyPDpH
想法是,如果我点击“ 1 Button ”它应该是“红色”,如果我点击“2 Button”也应该将其颜色更改为“红色”但“1 Button”应该更改为其默认颜色这是黑色的。但是,“2 按钮”。
如果我的方法太简单,TouchableHighlight
也欢迎其他方法(例如,ES6 等)。我很感激你告诉我错误,以便我从中吸取教训。
谁能帮我。这是我的源代码:https : //snack.expo.io/rJFgyPDpH
想法是,如果我点击“ 1 Button ”它应该是“红色”,如果我点击“2 Button”也应该将其颜色更改为“红色”但“1 Button”应该更改为其默认颜色这是黑色的。但是,“2 按钮”。
如果我的方法太简单,TouchableHighlight
也欢迎其他方法(例如,ES6 等)。我很感激你告诉我错误,以便我从中吸取教训。
试试下面
state={
selectedButton: '',
};
<View style={styles.container}>
<TouchableOpacity
style={{ backgroundColor: this.state.selectedButton === 'button1' ? 'red' : 'black', padding: 15}}
onPress={() => this.setState({ selectedButton: 'button1' })}
>
<Text style={styles.text}>1 Button</Text>
</TouchableOpacity>
<TouchableOpacity
style={{ backgroundColor: this.state.selectedButton === 'button2' ? 'red' : 'black', padding: 15}}
onPress={() => this.setState({ selectedButton: 'button2' })}
>
<Text style={styles.text}>2 button!</Text>
</TouchableOpacity>
</View>
您可以编写如下代码:
import React, {Component} from 'react';
import {Platform, StyleSheet, Text, View, Button,TouchableOpacity} from 'react-native';
export default class App extends Component {
state={
backgroundColor: 'black',
backgroundColor2: 'black',
pressed: false,
};
changeColor(){
if(!this.state.pressed){
this.setState({ pressed: true,backgroundColor: 'red', backgroundColor2: 'black'});
} else {
this.setState({ pressed: false, backgroundColor: 'black' ,backgroundColor2: 'red'});
}
}
render() {
return (
<View style={styles.container}>
<TouchableOpacity
style={{backgroundColor:this.state.backgroundColor, padding: 15}}
onPress={()=>this.changeColor()}
>
<Text style={styles.text}>1 Button</Text>
</TouchableOpacity>
<TouchableOpacity
style={{backgroundColor:this.state.backgroundColor2, padding: 15}}
onPress={()=>this.changeColor()}
>
<Text style={styles.text}>2 button!</Text>
</TouchableOpacity>
</View>
);
}
}
const styles = StyleSheet.create({
text:{
color:'white'
},
container: {
flex: 1,
justifyContent: 'center',
alignItems: 'center',
backgroundColor: '#fff',
},
});
现在,如果您单击第一个按钮,它应该是“红色”,但第二个按钮仍然是“黑色”背景。因此,如果您单击第二个按钮,它应该是“红色”,而第一个按钮应该是“黑色”。
changeColor=()=>{
this.setState({
backgroundColor:'red',
backgroundColor2:'black'
})
}
changeColor2=()=>{
this.setState({
backgroundColor:'black',
backgroundColor2:'red'
})
}
根据您的要求,按第一个按钮,它将调用 changeColor。并且在按下第二个按钮时,它会调用 changeColor2。
在代码中,第二个按钮的onPress,可以改为changeColor2,而不是changeColor函数。
这
onPress={()=>this.changeColor2()}
代替
onPress={()=>this.changeColor()}
通过传递 id,您可以交替更改颜色
import React, { Component } from 'react';
import { StyleSheet, TouchableOpacity, Text, View, Button } from 'react-native';
export default class App extends Component {
constructor(props) {
super(props);
this.state = { colorId:0 };
}
onPress = (id) => {
this.setState({colorId: id});
};
render() {
return (
<View style={styles.container}>
<TouchableOpacity
style={this.state.colorId === 1? styles.red : styles.button}
onPress={()=>this.onPress(1)}>
<Text>Button1</Text>
</TouchableOpacity>
<TouchableOpacity
style={this.state.colorId === 2? styles.red : styles.button}
onPress={()=>this.onPress(2)}>
<Text>Button2</Text>
</TouchableOpacity>
</View>
);
}
}
const styles = StyleSheet.create({
container: {
flex: 1,
justifyContent: 'center',
paddingHorizontal: 10,
},
red: {
backgroundColor: 'red',
alignItems: 'center',
padding: 10,
},
button: {
alignItems: 'center',
backgroundColor: '#DDDDDD',
padding: 10,
},
});