activity_customer_privacyinfo.xml 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:layout_width="match_parent"
  4. android:layout_height="match_parent"
  5. android:background="@color/white"
  6. android:orientation="vertical" >
  7. <ScrollView
  8. android:layout_width="fill_parent"
  9. android:layout_height="0dp"
  10. android:layout_weight="1" >
  11. <LinearLayout
  12. android:layout_width="fill_parent"
  13. android:layout_height="wrap_content"
  14. android:orientation="vertical" >
  15. <View
  16. android:layout_width="match_parent"
  17. android:layout_height="10dp"
  18. android:layout_marginTop="3dp"
  19. android:background="@color/linegray" />
  20. <RelativeLayout
  21. android:layout_width="match_parent"
  22. android:layout_height="@dimen/ll_layout_height_50" >
  23. <TextView
  24. android:id="@+id/birthdayTitle"
  25. android:layout_width="80dp"
  26. android:layout_height="wrap_content"
  27. android:layout_centerVertical="true"
  28. android:layout_marginLeft="15dp"
  29. android:text="出生日期"
  30. android:textColor="@color/black"
  31. android:textSize="@dimen/textsize_13" />
  32. <LinearLayout
  33. android:id="@+id/birthdayLin"
  34. android:layout_width="match_parent"
  35. android:layout_height="wrap_content"
  36. android:layout_centerVertical="true"
  37. android:layout_marginLeft="@dimen/ll_layout_marginBottom_30"
  38. android:layout_toRightOf="@id/birthdayTitle"
  39. android:orientation="horizontal" >
  40. <TextView
  41. android:id="@+id/tv_birthday"
  42. android:layout_width="wrap_content"
  43. android:layout_height="wrap_content"
  44. android:layout_gravity="center_vertical"
  45. android:background="@null"
  46. android:hint="请选择出生日期 "
  47. android:singleLine="true"
  48. android:text=""
  49. android:textColor="@color/black"
  50. android:textSize="@dimen/textsize_13" />
  51. <LinearLayout
  52. android:layout_width="match_parent"
  53. android:layout_height="wrap_content"
  54. android:gravity="right"
  55. android:orientation="horizontal" >
  56. <ImageView
  57. android:id="@+id/birthdayIv"
  58. android:layout_width="wrap_content"
  59. android:layout_height="wrap_content"
  60. android:layout_gravity="center_vertical"
  61. android:layout_marginRight="15dp"
  62. android:src="@drawable/right" />
  63. </LinearLayout>
  64. </LinearLayout>
  65. <LinearLayout
  66. android:layout_width="fill_parent"
  67. android:layout_height="wrap_content"
  68. android:layout_alignParentBottom="true"
  69. android:layout_marginLeft="@dimen/ll_layout_marginBottom_30"
  70. android:layout_toRightOf="@id/birthdayTitle"
  71. android:background="@color/white"
  72. android:orientation="vertical" >
  73. <View
  74. android:layout_width="match_parent"
  75. android:layout_height="1dp"
  76. android:background="@color/linegray" />
  77. </LinearLayout>
  78. </RelativeLayout>
  79. <RelativeLayout
  80. android:layout_width="match_parent"
  81. android:layout_height="@dimen/ll_layout_height_50" >
  82. <TextView
  83. android:id="@+id/sexTitle"
  84. android:layout_width="80dp"
  85. android:layout_height="wrap_content"
  86. android:layout_centerVertical="true"
  87. android:layout_marginLeft="15dp"
  88. android:text="性 别"
  89. android:textColor="@color/black"
  90. android:textSize="@dimen/textsize_13" />
  91. <LinearLayout
  92. android:id="@+id/sexLin"
  93. android:layout_width="match_parent"
  94. android:layout_height="wrap_content"
  95. android:layout_centerVertical="true"
  96. android:layout_marginLeft="@dimen/ll_layout_marginBottom_30"
  97. android:layout_toRightOf="@id/sexTitle"
  98. android:orientation="horizontal" >
  99. <TextView
  100. android:id="@+id/tv_sex"
  101. android:layout_width="wrap_content"
  102. android:layout_height="wrap_content"
  103. android:layout_gravity="center_vertical"
  104. android:background="@null"
  105. android:hint="请选择性别 "
  106. android:singleLine="true"
  107. android:text=""
  108. android:textColor="@color/black"
  109. android:textSize="@dimen/textsize_13" />
  110. <LinearLayout
  111. android:layout_width="match_parent"
  112. android:layout_height="wrap_content"
  113. android:gravity="right"
  114. android:orientation="horizontal" >
  115. <ImageView
  116. android:id="@+id/sexIv"
  117. android:layout_width="wrap_content"
  118. android:layout_height="wrap_content"
  119. android:layout_gravity="center_vertical"
  120. android:layout_marginRight="15dp"
  121. android:src="@drawable/right" />
  122. </LinearLayout>
  123. </LinearLayout>
  124. <LinearLayout
  125. android:layout_width="fill_parent"
  126. android:layout_height="wrap_content"
  127. android:layout_alignParentBottom="true"
  128. android:layout_marginLeft="@dimen/ll_layout_marginBottom_30"
  129. android:layout_toRightOf="@id/sexTitle"
  130. android:background="@color/white"
  131. android:orientation="vertical" >
  132. <View
  133. android:layout_width="match_parent"
  134. android:layout_height="1dp"
  135. android:background="@color/linegray" />
  136. </LinearLayout>
  137. </RelativeLayout>
  138. <RelativeLayout
  139. android:layout_width="match_parent"
  140. android:layout_height="@dimen/ll_layout_height_50" >
  141. <TextView
  142. android:id="@+id/professionTitle"
  143. android:layout_width="80dp"
  144. android:layout_height="wrap_content"
  145. android:layout_centerVertical="true"
  146. android:layout_marginLeft="15dp"
  147. android:text="职 业"
  148. android:textColor="@color/black"
  149. android:textSize="@dimen/textsize_13" />
  150. <LinearLayout
  151. android:id="@+id/professionLin"
  152. android:layout_width="match_parent"
  153. android:layout_height="wrap_content"
  154. android:layout_centerVertical="true"
  155. android:layout_marginLeft="@dimen/ll_layout_marginBottom_30"
  156. android:layout_toRightOf="@id/professionTitle"
  157. android:orientation="horizontal" >
  158. <EditText
  159. android:id="@+id/professionEdt"
  160. android:layout_width="wrap_content"
  161. android:layout_height="fill_parent"
  162. android:layout_gravity="center_vertical"
  163. android:background="@color/white"
  164. android:gravity="center_vertical"
  165. android:hint="请输入职业"
  166. android:imeOptions="actionNext"
  167. android:maxLength="200"
  168. android:singleLine="true"
  169. android:textColor="@color/black"
  170. android:textSize="@dimen/textsize_13" />
  171. </LinearLayout>
  172. <LinearLayout
  173. android:layout_width="fill_parent"
  174. android:layout_height="wrap_content"
  175. android:layout_alignParentBottom="true"
  176. android:layout_marginLeft="@dimen/ll_layout_marginBottom_30"
  177. android:layout_toRightOf="@id/professionTitle"
  178. android:background="@color/white"
  179. android:orientation="vertical" >
  180. <View
  181. android:layout_width="match_parent"
  182. android:layout_height="1dp"
  183. android:background="@color/linegray" />
  184. </LinearLayout>
  185. </RelativeLayout>
  186. <RelativeLayout
  187. android:layout_width="match_parent"
  188. android:layout_height="@dimen/ll_layout_height_50" >
  189. <TextView
  190. android:id="@+id/hobbyTitle"
  191. android:layout_width="80dp"
  192. android:layout_height="wrap_content"
  193. android:layout_centerVertical="true"
  194. android:layout_marginLeft="15dp"
  195. android:text="兴趣爱好"
  196. android:textColor="@color/black"
  197. android:textSize="@dimen/textsize_13" />
  198. <LinearLayout
  199. android:id="@+id/hobbyLin"
  200. android:layout_width="match_parent"
  201. android:layout_height="wrap_content"
  202. android:layout_centerVertical="true"
  203. android:layout_marginLeft="@dimen/ll_layout_marginBottom_30"
  204. android:layout_toRightOf="@id/hobbyTitle"
  205. android:orientation="horizontal" >
  206. <EditText
  207. android:id="@+id/hobbyEdt"
  208. android:layout_width="wrap_content"
  209. android:layout_height="fill_parent"
  210. android:layout_gravity="center_vertical"
  211. android:background="@color/white"
  212. android:gravity="center_vertical"
  213. android:hint="请输入兴趣爱好"
  214. android:maxLength="200"
  215. android:singleLine="true"
  216. android:textColor="@color/black"
  217. android:textSize="@dimen/textsize_13" />
  218. </LinearLayout>
  219. <LinearLayout
  220. android:layout_width="fill_parent"
  221. android:layout_height="wrap_content"
  222. android:layout_alignParentBottom="true"
  223. android:layout_marginLeft="@dimen/ll_layout_marginBottom_30"
  224. android:layout_toRightOf="@id/hobbyTitle"
  225. android:background="@color/white"
  226. android:orientation="vertical" >
  227. <View
  228. android:layout_width="match_parent"
  229. android:layout_height="1dp"
  230. android:background="@color/linegray" />
  231. </LinearLayout>
  232. </RelativeLayout>
  233. <RelativeLayout
  234. android:layout_width="match_parent"
  235. android:layout_height="@dimen/ll_layout_height_50" >
  236. <TextView
  237. android:id="@+id/likeStyleTitle"
  238. android:layout_width="80dp"
  239. android:layout_height="wrap_content"
  240. android:layout_centerVertical="true"
  241. android:layout_marginLeft="15dp"
  242. android:text="喜好风格"
  243. android:textColor="@color/black"
  244. android:textSize="@dimen/textsize_13" />
  245. <LinearLayout
  246. android:id="@+id/likeStyleLin"
  247. android:layout_width="match_parent"
  248. android:layout_height="wrap_content"
  249. android:layout_centerVertical="true"
  250. android:layout_marginLeft="@dimen/ll_layout_marginBottom_30"
  251. android:layout_toRightOf="@id/likeStyleTitle"
  252. android:orientation="horizontal" >
  253. <EditText
  254. android:id="@+id/likeStyleEdt"
  255. android:layout_width="wrap_content"
  256. android:layout_height="fill_parent"
  257. android:layout_gravity="center_vertical"
  258. android:background="@color/white"
  259. android:gravity="center_vertical"
  260. android:hint="请输入喜好风格"
  261. android:maxLength="100"
  262. android:singleLine="true"
  263. android:textColor="@color/black"
  264. android:textSize="@dimen/textsize_13" />
  265. </LinearLayout>
  266. <LinearLayout
  267. android:layout_width="fill_parent"
  268. android:layout_height="wrap_content"
  269. android:layout_alignParentBottom="true"
  270. android:layout_marginLeft="@dimen/ll_layout_marginBottom_30"
  271. android:layout_toRightOf="@id/likeStyleTitle"
  272. android:background="@color/white"
  273. android:orientation="vertical" >
  274. <View
  275. android:layout_width="match_parent"
  276. android:layout_height="1dp"
  277. android:background="@color/linegray" />
  278. </LinearLayout>
  279. </RelativeLayout>
  280. <RelativeLayout
  281. android:layout_width="match_parent"
  282. android:layout_height="@dimen/ll_layout_height_50" >
  283. <TextView
  284. android:id="@+id/phisicalCharactisticsTitle"
  285. android:layout_width="80dp"
  286. android:layout_height="wrap_content"
  287. android:layout_centerVertical="true"
  288. android:layout_marginLeft="15dp"
  289. android:text="体貌特征"
  290. android:textColor="@color/black"
  291. android:textSize="@dimen/textsize_13" />
  292. <LinearLayout
  293. android:id="@+id/phisicalCharactisticsLin"
  294. android:layout_width="match_parent"
  295. android:layout_height="wrap_content"
  296. android:layout_centerVertical="true"
  297. android:layout_marginLeft="@dimen/ll_layout_marginBottom_30"
  298. android:layout_toRightOf="@id/phisicalCharactisticsTitle"
  299. android:orientation="horizontal" >
  300. <EditText
  301. android:id="@+id/phisicalCharactisticsEdt"
  302. android:layout_width="wrap_content"
  303. android:layout_height="fill_parent"
  304. android:layout_gravity="center_vertical"
  305. android:background="@color/white"
  306. android:gravity="center_vertical"
  307. android:hint="请输入体貌特征"
  308. android:singleLine="true"
  309. android:maxLength="255"
  310. android:textColor="@color/black"
  311. android:textSize="@dimen/textsize_13" />
  312. </LinearLayout>
  313. <LinearLayout
  314. android:layout_width="fill_parent"
  315. android:layout_height="wrap_content"
  316. android:layout_alignParentBottom="true"
  317. android:layout_marginLeft="@dimen/ll_layout_marginBottom_30"
  318. android:layout_toRightOf="@id/phisicalCharactisticsTitle"
  319. android:background="@color/white"
  320. android:orientation="vertical" >
  321. <View
  322. android:layout_width="match_parent"
  323. android:layout_height="1dp"
  324. android:background="@color/linegray" />
  325. </LinearLayout>
  326. </RelativeLayout>
  327. <RelativeLayout
  328. android:layout_width="match_parent"
  329. android:layout_height="@dimen/ll_layout_height_50" >
  330. <TextView
  331. android:id="@+id/otherContactTitle"
  332. android:layout_width="80dp"
  333. android:layout_height="wrap_content"
  334. android:layout_centerVertical="true"
  335. android:layout_marginLeft="15dp"
  336. android:text="联系方式"
  337. android:textColor="@color/black"
  338. android:textSize="@dimen/textsize_13" />
  339. <LinearLayout
  340. android:id="@+id/otherContactLin"
  341. android:layout_width="match_parent"
  342. android:layout_height="wrap_content"
  343. android:layout_centerVertical="true"
  344. android:layout_marginLeft="@dimen/ll_layout_marginBottom_30"
  345. android:layout_toRightOf="@id/otherContactTitle"
  346. android:orientation="horizontal" >
  347. <EditText
  348. android:id="@+id/otherContactEdt"
  349. android:layout_width="wrap_content"
  350. android:layout_height="fill_parent"
  351. android:layout_gravity="center_vertical"
  352. android:background="@color/white"
  353. android:gravity="center_vertical"
  354. android:hint="请输入其它联系方式"
  355. android:singleLine="true"
  356. android:maxLength="100"
  357. android:textColor="@color/black"
  358. android:textSize="@dimen/textsize_13" />
  359. </LinearLayout>
  360. <LinearLayout
  361. android:layout_width="fill_parent"
  362. android:layout_height="wrap_content"
  363. android:layout_alignParentBottom="true"
  364. android:layout_marginLeft="@dimen/ll_layout_marginBottom_30"
  365. android:layout_toRightOf="@id/otherContactTitle"
  366. android:background="@color/white"
  367. android:orientation="vertical" >
  368. <View
  369. android:layout_width="match_parent"
  370. android:layout_height="1dp"
  371. android:background="@color/linegray" />
  372. </LinearLayout>
  373. </RelativeLayout>
  374. <RelativeLayout
  375. android:layout_width="match_parent"
  376. android:layout_height="@dimen/ll_layout_height_50" >
  377. <TextView
  378. android:id="@+id/educationTitle"
  379. android:layout_width="80dp"
  380. android:layout_height="wrap_content"
  381. android:layout_centerVertical="true"
  382. android:layout_marginLeft="15dp"
  383. android:text="学 历"
  384. android:textColor="@color/black"
  385. android:textSize="@dimen/textsize_13" />
  386. <LinearLayout
  387. android:id="@+id/educationLin"
  388. android:layout_width="match_parent"
  389. android:layout_height="wrap_content"
  390. android:layout_centerVertical="true"
  391. android:layout_marginLeft="@dimen/ll_layout_marginBottom_30"
  392. android:layout_toRightOf="@id/educationTitle"
  393. android:orientation="horizontal" >
  394. <TextView
  395. android:id="@+id/tv_education"
  396. android:layout_width="wrap_content"
  397. android:layout_height="wrap_content"
  398. android:layout_gravity="center_vertical"
  399. android:background="@null"
  400. android:hint="请选择学历 "
  401. android:singleLine="true"
  402. android:text=""
  403. android:textColor="@color/black"
  404. android:textSize="@dimen/textsize_13" />
  405. <LinearLayout
  406. android:layout_width="match_parent"
  407. android:layout_height="wrap_content"
  408. android:gravity="right"
  409. android:orientation="horizontal" >
  410. <ImageView
  411. android:id="@+id/educationIv"
  412. android:layout_width="wrap_content"
  413. android:layout_height="wrap_content"
  414. android:layout_gravity="center_vertical"
  415. android:layout_marginRight="15dp"
  416. android:src="@drawable/right" />
  417. </LinearLayout>
  418. </LinearLayout>
  419. <LinearLayout
  420. android:layout_width="fill_parent"
  421. android:layout_height="wrap_content"
  422. android:layout_alignParentBottom="true"
  423. android:layout_marginLeft="@dimen/ll_layout_marginBottom_30"
  424. android:layout_toRightOf="@id/educationTitle"
  425. android:background="@color/white"
  426. android:orientation="vertical" >
  427. <View
  428. android:layout_width="match_parent"
  429. android:layout_height="1dp"
  430. android:background="@color/linegray" />
  431. </LinearLayout>
  432. </RelativeLayout>
  433. <RelativeLayout
  434. android:layout_width="match_parent"
  435. android:layout_height="@dimen/ll_layout_height_50" >
  436. <TextView
  437. android:id="@+id/crowdTitle"
  438. android:layout_width="80dp"
  439. android:layout_height="wrap_content"
  440. android:layout_centerVertical="true"
  441. android:layout_marginLeft="15dp"
  442. android:text="居住人群"
  443. android:textColor="@color/black"
  444. android:textSize="@dimen/textsize_13" />
  445. <LinearLayout
  446. android:id="@+id/crowdLin"
  447. android:layout_width="match_parent"
  448. android:layout_height="wrap_content"
  449. android:layout_centerVertical="true"
  450. android:layout_marginLeft="@dimen/ll_layout_marginBottom_30"
  451. android:layout_toRightOf="@id/crowdTitle"
  452. android:orientation="horizontal" >
  453. <EditText
  454. android:id="@+id/crowdEdt"
  455. android:layout_width="wrap_content"
  456. android:layout_height="fill_parent"
  457. android:layout_gravity="center_vertical"
  458. android:background="@color/white"
  459. android:gravity="center_vertical"
  460. android:hint="请输入居住人群"
  461. android:imeOptions="actionNext"
  462. android:singleLine="true"
  463. android:maxLength="100"
  464. android:textColor="@color/black"
  465. android:textSize="@dimen/textsize_13" />
  466. </LinearLayout>
  467. <LinearLayout
  468. android:layout_width="fill_parent"
  469. android:layout_height="wrap_content"
  470. android:layout_alignParentBottom="true"
  471. android:layout_marginLeft="@dimen/ll_layout_marginBottom_30"
  472. android:layout_toRightOf="@id/crowdTitle"
  473. android:background="@color/white"
  474. android:orientation="vertical" >
  475. <View
  476. android:layout_width="match_parent"
  477. android:layout_height="1dp"
  478. android:background="@color/linegray" />
  479. </LinearLayout>
  480. </RelativeLayout>
  481. </LinearLayout>
  482. </ScrollView>
  483. </LinearLayout>