ChosePhoto.js 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200
  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. type Props = {};
  25. export default class ChosePhoto extends Component<Props> {
  26. state = {
  27. modalVisible: false
  28. };
  29. setModalVisible(visible) {
  30. this.setState({
  31. modalVisible: visible
  32. });
  33. }
  34. render() {
  35. return (
  36. <Modal
  37. animationType="slide"
  38. transparent={true}
  39. visible={this.state.modalVisible}
  40. onRequestClose={() => {
  41. this.setState({ modalVisible: false });
  42. }}
  43. >
  44. <View
  45. style={{
  46. flex: 1,
  47. flexDirection: "column"
  48. }}
  49. >
  50. <TouchableOpacity
  51. style={{
  52. flex: 2.5,
  53. backgroundColor: "rgba(0, 0, 0, 0.5)",
  54. width: "100%"
  55. }}
  56. activeOpacity={1}
  57. onPress={() => this.setState({ modalVisible: false })}
  58. >
  59. <View
  60. style={{
  61. flex: 2,
  62. width: "100%"
  63. }}
  64. />
  65. </TouchableOpacity>
  66. <View
  67. style={{
  68. flex: 1,
  69. width: "100%",
  70. flexDirection: "column",
  71. alignItems: "center",
  72. backgroundColor: "rgba(0, 0, 0, 0.5)",
  73. justifyContent: "center"
  74. }}
  75. >
  76. <View
  77. style={{
  78. flex: 2,
  79. width: "90%",
  80. backgroundColor: "white",
  81. borderRadius: 20,
  82. flexDirection: "column"
  83. }}
  84. >
  85. <TouchableOpacity
  86. style={{
  87. flex: 5,
  88. alignItems: "center",
  89. justifyContent: "center"
  90. }}
  91. activeOpacity={1}
  92. onPress={this.photograph.bind(this)}
  93. >
  94. <View
  95. style={{
  96. flex: 1,
  97. alignItems: "center",
  98. justifyContent: "center"
  99. }}
  100. >
  101. <Text
  102. style={{ fontSize: 22, color: "rgba(88, 168, 250, 1)" }}
  103. >
  104. 拍照
  105. </Text>
  106. </View>
  107. </TouchableOpacity>
  108. <View
  109. style={{
  110. flex: 0.1,
  111. backgroundColor: "rgba(246, 247, 248, 1)"
  112. }}
  113. />
  114. <TouchableOpacity
  115. style={{
  116. flex: 5,
  117. alignItems: "center",
  118. justifyContent: "center"
  119. }}
  120. activeOpacity={1}
  121. onPress={this.album_selection.bind(this)}
  122. >
  123. <View
  124. style={{
  125. flex: 1,
  126. alignItems: "center",
  127. justifyContent: "center"
  128. }}
  129. >
  130. <Text
  131. style={{ fontSize: 22, color: "rgba(88, 168, 250, 1)" }}
  132. >
  133. 从相册选择
  134. </Text>
  135. </View>
  136. </TouchableOpacity>
  137. </View>
  138. <View
  139. style={{
  140. flex: 0.1,
  141. width: "100%"
  142. }}
  143. />
  144. <TouchableOpacity
  145. style={{
  146. flex: 1,
  147. width: "90%",
  148. alignItems: "center",
  149. justifyContent: "center",
  150. borderRadius: 20,
  151. backgroundColor: "white"
  152. }}
  153. activeOpacity={1}
  154. onPress={() => {
  155. this.setState({ modalVisible: false });
  156. }}
  157. >
  158. <View
  159. style={{
  160. flex: 1,
  161. alignItems: "center",
  162. justifyContent: "center",
  163. borderRadius: 20,
  164. backgroundColor: "white"
  165. }}
  166. >
  167. <Text
  168. style={{
  169. // fontWeight: "bold",
  170. fontSize: 22,
  171. color: "rgba(88, 168, 250, 1)"
  172. }}
  173. >
  174. 取消
  175. </Text>
  176. </View>
  177. </TouchableOpacity>
  178. <View
  179. style={{
  180. flex: 0.1,
  181. width: "100%"
  182. }}
  183. />
  184. </View>
  185. </View>
  186. </Modal>
  187. );
  188. }
  189. photograph() {
  190. alert("拍照");
  191. }
  192. album_selection() {
  193. alert("相册选择");
  194. }
  195. }