http://www.voidcn.com/article/p-vijhprhu-buo.html
直接在View上綁定點擊事件,是沒有用的。要使任何元素處理React-Native UI中的觸摸/單擊事件,您需要將元素放在TouchableOpacity,TouchableWithoutFeedback,TouchableNativeFeedback或TouchableHighlight元素中:
<TouchableHighlight onPress = { this.onClick }>
<View style={styles.container}>
<Text style={styles.welcome}>
Tap to change the background
</Text>
</View>
</TouchableHighlight>
