ChosePhoto.js 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215
  1. /**
  2. * Sample React Native App
  3. * https://github.com/facebook/react-native
  4. *
  5. * @format
  6. * @flow
  7. */
  8. import React, { Component } from "react";
  9. import {
  10. Platform,
  11. StyleSheet,
  12. Text,
  13. View,
  14. Image,
  15. TouchableOpacity,
  16. ImageBackground,
  17. TextInput,
  18. Button,
  19. StatusBar,
  20. Modal,
  21. TouchableHighlight,
  22. DeviceEventEmitter
  23. } from "react-native";
  24. import ImagePicker from "react-native-image-picker";
  25. type Props = {};
  26. const options = {};
  27. export default class ChosePhoto extends Component<Props> {
  28. state = {
  29. modalVisible: false
  30. };
  31. setModalVisible(visible) {
  32. this.setState({
  33. modalVisible: visible
  34. });
  35. }
  36. render() {
  37. return (
  38. <Modal
  39. animationType="slide"
  40. transparent={true}
  41. visible={this.state.modalVisible}
  42. onRequestClose={() => {
  43. this.setState({ modalVisible: false });
  44. }}
  45. >
  46. <View
  47. style={{
  48. flex: 1,
  49. flexDirection: "column"
  50. }}
  51. >
  52. <TouchableOpacity
  53. style={{
  54. flex: 2.5,
  55. backgroundColor: "rgba(0, 0, 0, 0.5)",
  56. width: "100%"
  57. }}
  58. activeOpacity={1}
  59. onPress={() => this.setState({ modalVisible: false })}
  60. >
  61. <View
  62. style={{
  63. flex: 2,
  64. width: "100%"
  65. }}
  66. />
  67. </TouchableOpacity>
  68. <View
  69. style={{
  70. flex: 1,
  71. width: "100%",
  72. flexDirection: "column",
  73. alignItems: "center",
  74. backgroundColor: "rgba(0, 0, 0, 0.5)",
  75. justifyContent: "center"
  76. }}
  77. >
  78. <View
  79. style={{
  80. flex: 2,
  81. width: "90%",
  82. backgroundColor: "white",
  83. borderRadius: 20,
  84. flexDirection: "column"
  85. }}
  86. >
  87. <TouchableOpacity
  88. style={{
  89. flex: 5,
  90. alignItems: "center",
  91. justifyContent: "center"
  92. }}
  93. activeOpacity={1}
  94. onPress={this.photograph.bind(this)}
  95. >
  96. <View
  97. style={{
  98. flex: 1,
  99. alignItems: "center",
  100. justifyContent: "center"
  101. }}
  102. >
  103. <Text
  104. style={{ fontSize: 22, color: "rgba(88, 168, 250, 1)" }}
  105. >
  106. 拍照
  107. </Text>
  108. </View>
  109. </TouchableOpacity>
  110. <View
  111. style={{
  112. flex: 0.1,
  113. backgroundColor: "rgba(246, 247, 248, 1)"
  114. }}
  115. />
  116. <TouchableOpacity
  117. style={{
  118. flex: 5,
  119. alignItems: "center",
  120. justifyContent: "center"
  121. }}
  122. activeOpacity={1}
  123. onPress={this.album_selection.bind(this)}
  124. >
  125. <View
  126. style={{
  127. flex: 1,
  128. alignItems: "center",
  129. justifyContent: "center"
  130. }}
  131. >
  132. <Text
  133. style={{ fontSize: 22, color: "rgba(88, 168, 250, 1)" }}
  134. >
  135. 从相册选择
  136. </Text>
  137. </View>
  138. </TouchableOpacity>
  139. </View>
  140. <View
  141. style={{
  142. flex: 0.1,
  143. width: "100%"
  144. }}
  145. />
  146. <TouchableOpacity
  147. style={{
  148. flex: 1,
  149. width: "90%",
  150. alignItems: "center",
  151. justifyContent: "center",
  152. borderRadius: 20,
  153. backgroundColor: "white"
  154. }}
  155. activeOpacity={1}
  156. onPress={() => {
  157. this.setState({ modalVisible: false });
  158. }}
  159. >
  160. <View
  161. style={{
  162. flex: 1,
  163. alignItems: "center",
  164. justifyContent: "center",
  165. borderRadius: 20,
  166. backgroundColor: "white"
  167. }}
  168. >
  169. <Text
  170. style={{
  171. // fontWeight: "bold",
  172. fontSize: 22,
  173. color: "rgba(88, 168, 250, 1)"
  174. }}
  175. >
  176. 取消
  177. </Text>
  178. </View>
  179. </TouchableOpacity>
  180. <View
  181. style={{
  182. flex: 0.1,
  183. width: "100%"
  184. }}
  185. />
  186. </View>
  187. </View>
  188. </Modal>
  189. );
  190. }
  191. photograph() {
  192. this.setModalVisible(false);
  193. //拍照
  194. ImagePicker.launchCamera(options, response => {
  195. if (response.error) {
  196. alert("ImagePicker Error: " + response.error);
  197. }
  198. this.props.photoback(response.uri);
  199. });
  200. }
  201. album_selection() {
  202. this.setModalVisible(false);
  203. //打开系统相册
  204. ImagePicker.launchImageLibrary(options, response => {
  205. if (response.error) {
  206. alert("ImagePicker Error: " + response.error);
  207. }
  208. this.props.photoback(response.uri);
  209. });
  210. }
  211. }