今天我们来讲两个比较简单的组件的使用方法,分别是 Switch 和 ProgressBarAndroid 组件,由于非常简单,所以这两个控件的讲解就直接用一篇文章就够了。
今天我们来讲Switch组件,什么是Switch组件呢?我感觉大家都是做过移动开发的,应该知道是做什么用的。顾名思义:开关,控制组件。在使用它时,我们必须使用onValueChange回调来更新value属性以响应用户的动作。如果不更新value属性,组件只会按一开始给定的value值来渲染且保持不变,看上去就像完全不动。
先看一个简单的效果图,就是这么简单,代码其实更简单。
import React, { Component } from 'react';
import {
AppRegistry,
StyleSheet,
Text,
Switch,
View
} from 'react-native';
export default class SwitchDemo extends Component {
state = {
colorTrueSwitchIsOn: true,
colorFalseSwitchIsOn: false,
};
render() {
return (
<View style={styles.container}>
<Switch
onValueChange={(value) => this.setState({colorFalseSwitchIsOn: value})}
style={{marginBottom: 10}}
value={this.state.colorFalseSwitchIsOn} />
</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,
},
});
AppRegistry.registerComponent('SwitchDemo', () => SwitchDemo);
ProgressBar顾名思义就是进度条,而ProgressBarAndroid就是封装了Android平台上的ProgressBar的React组件。它的作用和功能就不用我说了吧?就是展示正在加载或者一些动作正在进行中。直接进入正题。
来,我们看看效果图,如下:
import React, { Component } from 'react';
import {
AppRegistry,
StyleSheet,
Text,
ProgressBarAndroid,
View
} from 'react-native';
export default class ProgressBarAndroidDemo extends Component {
render() {
return (
<View style={styles.container}>
<ProgressBarAndroid color="red" styleAttr='Horizontal'
indeterminate={true}/>
<ProgressBarAndroid color="red" styleAttr='Horizontal' progress={0.6}
indeterminate={false} style={{marginTop:15}}/>
<ProgressBarAndroid color="black" styleAttr='SmallInverse'
style={{marginTop:15}}/>
<ProgressBarAndroid color="blue" styleAttr='Inverse'style={{marginTop:15}}/>
<ProgressBarAndroid styleAttr='LargeInverse'
style={{marginTop:15}}/>
</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,
},
});
AppRegistry.registerComponent('ProgressBarAndroidDemo', () => ProgressBarAndroidDemo);
看到特别说明的时候,我要告诉你们,最新版本的react不再支持ProgressBarAndroid了,它已经被ActivityIndicator组件取代了,ProgressBarAndroid被抛弃了。学完了,我才告诉你们,你们不会打我吧,哈哈……我之所以讲,是因为让你们知道的更多一点,之后在看到别人用时,知道以前可以这么用。我们下节就讲ActivityIndicator组件。