activity_achivevementinfo.xml 24 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538
  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:orientation="vertical"
  6. android:background="@color/white">
  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. />
  21. <RelativeLayout
  22. android:layout_width="match_parent"
  23. android:layout_height="@dimen/ll_layout_height_50" >
  24. <TextView
  25. android:id="@+id/departmentTitle"
  26. android:layout_width="80dp"
  27. android:layout_height="wrap_content"
  28. android:layout_centerVertical="true"
  29. android:layout_marginLeft="15dp"
  30. android:text="业务部门"
  31. android:textColor="@color/black"
  32. android:textSize="@dimen/textsize_13" />
  33. <LinearLayout
  34. android:id="@+id/departmentLin"
  35. android:layout_width="match_parent"
  36. android:layout_height="wrap_content"
  37. android:layout_centerVertical="true"
  38. android:layout_marginLeft="@dimen/ll_layout_marginBottom_30"
  39. android:layout_toRightOf="@id/departmentTitle"
  40. android:gravity="center"
  41. android:orientation="horizontal" >
  42. <TextView
  43. android:id="@+id/tv_department"
  44. android:layout_width="wrap_content"
  45. android:layout_height="wrap_content"
  46. android:layout_gravity="center_vertical"
  47. android:background="@null"
  48. android:hint="请选择业务部门 "
  49. android:singleLine="true"
  50. android:text=""
  51. android:textColor="@color/black"
  52. android:textSize="@dimen/textsize_13" />
  53. <LinearLayout
  54. android:layout_width="match_parent"
  55. android:layout_height="wrap_content"
  56. android:gravity="right"
  57. android:orientation="horizontal" >
  58. <ImageView
  59. android:id="@+id/departmentIv"
  60. android:layout_width="wrap_content"
  61. android:layout_height="wrap_content"
  62. android:layout_gravity="center_vertical"
  63. android:layout_marginRight="15dp"
  64. android:src="@drawable/right" />
  65. </LinearLayout>
  66. </LinearLayout>
  67. <LinearLayout
  68. android:layout_width="fill_parent"
  69. android:layout_height="wrap_content"
  70. android:layout_alignParentBottom="true"
  71. android:layout_marginLeft="@dimen/ll_layout_marginBottom_30"
  72. android:layout_toRightOf="@id/departmentTitle"
  73. android:background="@color/white"
  74. android:orientation="vertical" >
  75. <View
  76. android:layout_width="match_parent"
  77. android:layout_height="1dp"
  78. android:background="@color/linegray" />
  79. </LinearLayout>
  80. </RelativeLayout>
  81. <RelativeLayout
  82. android:layout_width="match_parent"
  83. android:layout_height="@dimen/ll_layout_height_50" >
  84. <TextView
  85. android:id="@+id/staffTitle"
  86. android:layout_width="80dp"
  87. android:layout_height="wrap_content"
  88. android:layout_centerVertical="true"
  89. android:layout_marginLeft="15dp"
  90. android:text="业 务 员"
  91. android:textColor="@color/black"
  92. android:textSize="@dimen/textsize_13" />
  93. <LinearLayout
  94. android:id="@+id/staffLin"
  95. android:layout_width="match_parent"
  96. android:layout_height="wrap_content"
  97. android:layout_centerVertical="true"
  98. android:layout_marginLeft="@dimen/ll_layout_marginBottom_30"
  99. android:layout_toRightOf="@id/staffTitle"
  100. android:gravity="center"
  101. android:orientation="horizontal" >
  102. <TextView
  103. android:id="@+id/tv_staff"
  104. android:layout_width="wrap_content"
  105. android:layout_height="wrap_content"
  106. android:layout_gravity="center_vertical"
  107. android:background="@null"
  108. android:hint="请选择业务员 "
  109. android:singleLine="true"
  110. android:text=""
  111. android:textColor="@color/black"
  112. android:textSize="@dimen/textsize_13" />
  113. <LinearLayout
  114. android:layout_width="match_parent"
  115. android:layout_height="wrap_content"
  116. android:gravity="right"
  117. android:orientation="horizontal" >
  118. <ImageView
  119. android:id="@+id/staffIv"
  120. android:layout_width="wrap_content"
  121. android:layout_height="wrap_content"
  122. android:layout_gravity="center_vertical"
  123. android:layout_marginRight="15dp"
  124. android:src="@drawable/right" />
  125. </LinearLayout>
  126. </LinearLayout>
  127. <LinearLayout
  128. android:layout_width="fill_parent"
  129. android:layout_height="wrap_content"
  130. android:layout_alignParentBottom="true"
  131. android:layout_marginLeft="@dimen/ll_layout_marginBottom_30"
  132. android:layout_toRightOf="@id/staffTitle"
  133. android:background="@color/white"
  134. android:orientation="vertical" >
  135. <View
  136. android:layout_width="match_parent"
  137. android:layout_height="1dp"
  138. android:background="@color/linegray" />
  139. </LinearLayout>
  140. </RelativeLayout>
  141. <RelativeLayout
  142. android:layout_width="match_parent"
  143. android:layout_height="@dimen/ll_layout_height_50" >
  144. <TextView
  145. android:id="@+id/middleCustomerTitle"
  146. android:layout_width="80dp"
  147. android:layout_height="wrap_content"
  148. android:layout_centerVertical="true"
  149. android:layout_marginLeft="15dp"
  150. android:text="中间客户"
  151. android:textColor="@color/black"
  152. android:textSize="@dimen/textsize_13" />
  153. <LinearLayout
  154. android:id="@+id/middleCustomerLin"
  155. android:layout_width="match_parent"
  156. android:layout_height="wrap_content"
  157. android:layout_centerVertical="true"
  158. android:layout_marginLeft="@dimen/ll_layout_marginBottom_30"
  159. android:layout_toRightOf="@id/middleCustomerTitle"
  160. android:gravity="center"
  161. android:orientation="horizontal" >
  162. <TextView
  163. android:id="@+id/tv_middle_customer"
  164. android:layout_width="wrap_content"
  165. android:layout_height="wrap_content"
  166. android:layout_gravity="center_vertical"
  167. android:background="@null"
  168. android:hint="请选择中间客户 "
  169. android:singleLine="true"
  170. android:text=""
  171. android:textColor="@color/black"
  172. android:textSize="@dimen/textsize_13" />
  173. <LinearLayout
  174. android:layout_width="match_parent"
  175. android:layout_height="wrap_content"
  176. android:gravity="right"
  177. android:orientation="horizontal" >
  178. <ImageView
  179. android:id="@+id/middleCustomerIv"
  180. android:layout_width="wrap_content"
  181. android:layout_height="wrap_content"
  182. android:layout_gravity="center_vertical"
  183. android:layout_marginRight="15dp"
  184. android:src="@drawable/right" />
  185. </LinearLayout>
  186. </LinearLayout>
  187. <LinearLayout
  188. android:layout_width="fill_parent"
  189. android:layout_height="wrap_content"
  190. android:layout_alignParentBottom="true"
  191. android:layout_marginLeft="@dimen/ll_layout_marginBottom_30"
  192. android:layout_toRightOf="@id/middleCustomerTitle"
  193. android:background="@color/white"
  194. android:orientation="vertical" >
  195. <View
  196. android:layout_width="match_parent"
  197. android:layout_height="1dp"
  198. android:background="@color/linegray" />
  199. </LinearLayout>
  200. </RelativeLayout>
  201. <RelativeLayout
  202. android:layout_width="match_parent"
  203. android:layout_height="@dimen/ll_layout_height_50" >
  204. <TextView
  205. android:id="@+id/middleCustomerStaffTitle"
  206. android:layout_width="80dp"
  207. android:layout_height="wrap_content"
  208. android:layout_centerVertical="true"
  209. android:layout_marginLeft="15dp"
  210. android:text="中间员工"
  211. android:textColor="@color/black"
  212. android:textSize="@dimen/textsize_13" />
  213. <LinearLayout
  214. android:id="@+id/middleCustomerStaffLin"
  215. android:layout_width="match_parent"
  216. android:layout_height="wrap_content"
  217. android:layout_centerVertical="true"
  218. android:layout_marginLeft="@dimen/ll_layout_marginBottom_30"
  219. android:layout_toRightOf="@id/middleCustomerStaffTitle"
  220. android:gravity="center"
  221. android:orientation="horizontal" >
  222. <TextView
  223. android:id="@+id/tv_middle_customer_staff"
  224. android:layout_width="wrap_content"
  225. android:layout_height="wrap_content"
  226. android:layout_gravity="center_vertical"
  227. android:background="@null"
  228. android:hint="请选择中间客户员工 "
  229. android:singleLine="true"
  230. android:text=""
  231. android:textColor="@color/black"
  232. android:textSize="@dimen/textsize_13" />
  233. <LinearLayout
  234. android:layout_width="match_parent"
  235. android:layout_height="wrap_content"
  236. android:gravity="right"
  237. android:orientation="horizontal" >
  238. <ImageView
  239. android:id="@+id/middleCustomerStaffIv"
  240. android:layout_width="wrap_content"
  241. android:layout_height="wrap_content"
  242. android:layout_gravity="center_vertical"
  243. android:layout_marginRight="15dp"
  244. android:src="@drawable/right" />
  245. </LinearLayout>
  246. </LinearLayout>
  247. <LinearLayout
  248. android:layout_width="fill_parent"
  249. android:layout_height="wrap_content"
  250. android:layout_alignParentBottom="true"
  251. android:layout_marginLeft="@dimen/ll_layout_marginBottom_30"
  252. android:layout_toRightOf="@id/middleCustomerStaffTitle"
  253. android:background="@color/white"
  254. android:orientation="vertical" >
  255. <View
  256. android:layout_width="match_parent"
  257. android:layout_height="1dp"
  258. android:background="@color/linegray" />
  259. </LinearLayout>
  260. </RelativeLayout>
  261. <RelativeLayout
  262. android:layout_width="match_parent"
  263. android:layout_height="@dimen/ll_layout_height_50" >
  264. <TextView
  265. android:id="@+id/estimateTransactionDateTitle"
  266. android:layout_width="80dp"
  267. android:layout_height="wrap_content"
  268. android:layout_centerVertical="true"
  269. android:layout_marginLeft="15dp"
  270. android:text="成交日期"
  271. android:textColor="@color/black"
  272. android:textSize="@dimen/textsize_13" />
  273. <LinearLayout
  274. android:id="@+id/estimateTransactionDateLin"
  275. android:layout_width="match_parent"
  276. android:layout_height="wrap_content"
  277. android:layout_centerVertical="true"
  278. android:layout_marginLeft="@dimen/ll_layout_marginBottom_30"
  279. android:layout_toRightOf="@id/estimateTransactionDateTitle"
  280. android:gravity="center"
  281. android:orientation="horizontal" >
  282. <TextView
  283. android:id="@+id/tv_transaction_date"
  284. android:layout_width="wrap_content"
  285. android:layout_height="wrap_content"
  286. android:layout_gravity="center_vertical"
  287. android:background="@null"
  288. android:hint="请选择成交日期 "
  289. android:singleLine="true"
  290. android:text=""
  291. android:textColor="@color/black"
  292. android:textSize="@dimen/textsize_13" />
  293. <LinearLayout
  294. android:layout_width="match_parent"
  295. android:layout_height="wrap_content"
  296. android:gravity="right"
  297. android:orientation="horizontal" >
  298. <ImageView
  299. android:id="@+id/estimateTransactionDateIv"
  300. android:layout_width="wrap_content"
  301. android:layout_height="wrap_content"
  302. android:layout_gravity="center_vertical"
  303. android:layout_marginRight="15dp"
  304. android:src="@drawable/right" />
  305. </LinearLayout>
  306. </LinearLayout>
  307. <LinearLayout
  308. android:layout_width="fill_parent"
  309. android:layout_height="wrap_content"
  310. android:layout_alignParentBottom="true"
  311. android:layout_marginLeft="@dimen/ll_layout_marginBottom_30"
  312. android:layout_toRightOf="@id/estimateTransactionDateTitle"
  313. android:background="@color/white"
  314. android:orientation="vertical" >
  315. <View
  316. android:layout_width="match_parent"
  317. android:layout_height="1dp"
  318. android:background="@color/linegray" />
  319. </LinearLayout>
  320. </RelativeLayout>
  321. <RelativeLayout
  322. android:layout_width="match_parent"
  323. android:layout_height="@dimen/ll_layout_height_50" >
  324. <TextView
  325. android:id="@+id/estimateTransactionAmountTitle"
  326. android:layout_width="80dp"
  327. android:layout_height="wrap_content"
  328. android:layout_centerVertical="true"
  329. android:layout_marginLeft="15dp"
  330. android:text="成交金额"
  331. android:textColor="@color/black"
  332. android:textSize="@dimen/textsize_13" />
  333. <LinearLayout
  334. android:id="@+id/estimateTransactionAmountLin"
  335. android:layout_width="match_parent"
  336. android:layout_height="wrap_content"
  337. android:layout_centerVertical="true"
  338. android:layout_marginLeft="@dimen/ll_layout_marginBottom_30"
  339. android:layout_toRightOf="@id/estimateTransactionAmountTitle"
  340. android:orientation="horizontal" >
  341. <EditText
  342. android:id="@+id/estimateTransactionAmountEdt"
  343. android:layout_width="wrap_content"
  344. android:layout_height="fill_parent"
  345. android:layout_gravity="center_vertical"
  346. android:background="@color/white"
  347. android:gravity="center_vertical"
  348. android:textSize="@dimen/textsize_13"
  349. android:textColor="@color/black"
  350. android:hint="请输入预计成交金额"
  351. android:maxLength="17"
  352. android:imeOptions="actionNext"
  353. android:inputType="numberDecimal"
  354. android:singleLine="true"/>
  355. </LinearLayout>
  356. <LinearLayout
  357. android:layout_width="fill_parent"
  358. android:layout_height="wrap_content"
  359. android:layout_alignParentBottom="true"
  360. android:layout_marginLeft="@dimen/ll_layout_marginBottom_30"
  361. android:layout_toRightOf="@id/estimateTransactionAmountTitle"
  362. android:background="@color/white"
  363. android:orientation="vertical" >
  364. <View
  365. android:layout_width="match_parent"
  366. android:layout_height="1dp"
  367. android:background="@color/linegray" />
  368. </LinearLayout>
  369. </RelativeLayout>
  370. <RelativeLayout
  371. android:layout_width="match_parent"
  372. android:layout_height="@dimen/ll_layout_height_50" >
  373. <TextView
  374. android:id="@+id/fillingFeesTitle"
  375. android:layout_width="80dp"
  376. android:layout_height="wrap_content"
  377. android:layout_centerVertical="true"
  378. android:layout_marginLeft="15dp"
  379. android:text="报备费用"
  380. android:textColor="@color/black"
  381. android:textSize="@dimen/textsize_13" />
  382. <LinearLayout
  383. android:id="@+id/fillingFeesLin"
  384. android:layout_width="match_parent"
  385. android:layout_height="wrap_content"
  386. android:layout_centerVertical="true"
  387. android:layout_marginLeft="@dimen/ll_layout_marginBottom_30"
  388. android:layout_toRightOf="@id/fillingFeesTitle"
  389. android:orientation="horizontal" >
  390. <EditText
  391. android:id="@+id/fillingFeesEdt"
  392. android:layout_width="wrap_content"
  393. android:layout_height="fill_parent"
  394. android:layout_gravity="center_vertical"
  395. android:background="@color/white"
  396. android:gravity="center_vertical"
  397. android:textSize="@dimen/textsize_13"
  398. android:textColor="@color/black"
  399. android:hint="请输入报备费用"
  400. android:maxLength="17"
  401. android:imeOptions="actionNext"
  402. android:inputType="numberDecimal"
  403. android:singleLine="true"/>
  404. </LinearLayout>
  405. <LinearLayout
  406. android:layout_width="fill_parent"
  407. android:layout_height="wrap_content"
  408. android:layout_alignParentBottom="true"
  409. android:layout_marginLeft="@dimen/ll_layout_marginBottom_30"
  410. android:layout_toRightOf="@id/fillingFeesTitle"
  411. android:background="@color/white"
  412. android:orientation="vertical" >
  413. <View
  414. android:layout_width="match_parent"
  415. android:layout_height="1dp"
  416. android:background="@color/linegray" />
  417. </LinearLayout>
  418. </RelativeLayout>
  419. <RelativeLayout
  420. android:layout_width="match_parent"
  421. android:layout_height="@dimen/ll_layout_height_50" >
  422. <TextView
  423. android:id="@+id/discussResultTitle"
  424. android:layout_width="80dp"
  425. android:layout_height="wrap_content"
  426. android:layout_centerVertical="true"
  427. android:layout_marginLeft="15dp"
  428. android:text="洽谈结果"
  429. android:textColor="@color/black"
  430. android:textSize="@dimen/textsize_13" />
  431. <LinearLayout
  432. android:id="@+id/discussResultLin"
  433. android:layout_width="match_parent"
  434. android:layout_height="wrap_content"
  435. android:layout_centerVertical="true"
  436. android:layout_marginLeft="@dimen/ll_layout_marginBottom_30"
  437. android:layout_toRightOf="@id/discussResultTitle"
  438. android:orientation="horizontal" >
  439. <EditText
  440. android:id="@+id/discussResultEdt"
  441. android:layout_width="wrap_content"
  442. android:layout_height="fill_parent"
  443. android:layout_gravity="center_vertical"
  444. android:gravity="center_vertical"
  445. android:textSize="@dimen/textsize_13"
  446. android:textColor="@color/black"
  447. android:hint="请输入洽谈结果"
  448. android:background="@null"
  449. android:singleLine="true"
  450. android:maxLength="255"
  451. android:imeOptions="actionDone"
  452. android:ellipsize="end"/>
  453. </LinearLayout>
  454. <LinearLayout
  455. android:layout_width="fill_parent"
  456. android:layout_height="wrap_content"
  457. android:layout_alignParentBottom="true"
  458. android:layout_marginLeft="@dimen/ll_layout_marginBottom_30"
  459. android:layout_toRightOf="@id/discussResultTitle"
  460. android:background="@color/white"
  461. android:orientation="vertical" >
  462. <View
  463. android:layout_width="match_parent"
  464. android:layout_height="1dp"
  465. android:background="@color/linegray" />
  466. </LinearLayout>
  467. </RelativeLayout>
  468. </LinearLayout>
  469. </ScrollView>
  470. </LinearLayout>