activity_fitmentinfo.xml 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452
  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_margin="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/roomAreaTitle"
  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/roomAreaLin"
  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/roomAreaTitle"
  40. android:orientation="horizontal" >
  41. <EditText
  42. android:id="@+id/et_roomarea"
  43. android:layout_width="wrap_content"
  44. android:layout_height="fill_parent"
  45. android:background="@null"
  46. android:layout_gravity="center_vertical"
  47. android:gravity="center_vertical"
  48. android:textSize="@dimen/textsize_13"
  49. android:textColor="@color/black"
  50. android:hint="请输入室内面积"
  51. android:inputType="numberDecimal"
  52. android:maxLength="13"
  53. android:imeOptions="actionDone"
  54. android:singleLine="true"/>
  55. </LinearLayout>
  56. <LinearLayout
  57. android:layout_width="fill_parent"
  58. android:layout_height="wrap_content"
  59. android:layout_alignParentBottom="true"
  60. android:layout_marginLeft="@dimen/ll_layout_marginBottom_30"
  61. android:layout_toRightOf="@id/roomAreaTitle"
  62. android:background="@color/white"
  63. android:orientation="vertical" >
  64. <View
  65. android:layout_width="match_parent"
  66. android:layout_height="1dp"
  67. android:background="@color/lightgray" />
  68. </LinearLayout>
  69. </RelativeLayout>
  70. <RelativeLayout
  71. android:layout_width="match_parent"
  72. android:layout_height="@dimen/ll_layout_height_50" >
  73. <TextView
  74. android:id="@+id/decorationProgressTitle"
  75. android:layout_width="80dp"
  76. android:layout_height="wrap_content"
  77. android:layout_centerVertical="true"
  78. android:layout_marginLeft="15dp"
  79. android:text="装修进度"
  80. android:textColor="@color/black"
  81. android:textSize="@dimen/textsize_13" />
  82. <LinearLayout
  83. android:id="@+id/ll_decoration_progress"
  84. android:layout_width="match_parent"
  85. android:layout_height="wrap_content"
  86. android:layout_centerVertical="true"
  87. android:layout_marginLeft="@dimen/ll_layout_marginBottom_30"
  88. android:layout_toRightOf="@id/decorationProgressTitle"
  89. android:gravity="center"
  90. android:orientation="horizontal" >
  91. <TextView
  92. android:id="@+id/tv_decoration_progress"
  93. android:layout_width="wrap_content"
  94. android:layout_height="wrap_content"
  95. android:layout_gravity="center_vertical"
  96. android:background="@null"
  97. android:hint="请选择装修进度 "
  98. android:singleLine="true"
  99. android:text=""
  100. android:textColor="@color/black"
  101. android:textSize="@dimen/textsize_13" />
  102. <LinearLayout
  103. android:layout_width="match_parent"
  104. android:layout_height="wrap_content"
  105. android:gravity="right"
  106. android:orientation="horizontal" >
  107. <ImageView
  108. android:id="@+id/decorationProgressIv"
  109. android:layout_width="wrap_content"
  110. android:layout_height="wrap_content"
  111. android:layout_gravity="center_vertical"
  112. android:layout_marginRight="15dp"
  113. android:src="@drawable/right" />
  114. </LinearLayout>
  115. </LinearLayout>
  116. <LinearLayout
  117. android:layout_width="fill_parent"
  118. android:layout_height="wrap_content"
  119. android:layout_alignParentBottom="true"
  120. android:layout_marginLeft="@dimen/ll_layout_marginBottom_30"
  121. android:layout_toRightOf="@id/decorationProgressTitle"
  122. android:background="@color/white"
  123. android:orientation="vertical" >
  124. <View
  125. android:layout_width="match_parent"
  126. android:layout_height="1dp"
  127. android:background="@color/lightgray" />
  128. </LinearLayout>
  129. </RelativeLayout>
  130. <RelativeLayout
  131. android:layout_width="match_parent"
  132. android:layout_height="@dimen/ll_layout_height_50" >
  133. <TextView
  134. android:id="@+id/furnitureColorTitle"
  135. android:layout_width="80dp"
  136. android:layout_height="wrap_content"
  137. android:layout_centerVertical="true"
  138. android:layout_marginLeft="15dp"
  139. android:text="家具颜色"
  140. android:textColor="@color/black"
  141. android:textSize="@dimen/textsize_13" />
  142. <LinearLayout
  143. android:id="@+id/furnitureColorLin"
  144. android:layout_width="match_parent"
  145. android:layout_height="wrap_content"
  146. android:layout_centerVertical="true"
  147. android:layout_marginLeft="@dimen/ll_layout_marginBottom_30"
  148. android:layout_toRightOf="@id/furnitureColorTitle"
  149. android:orientation="horizontal" >
  150. <EditText
  151. android:id="@+id/et_furniturecolor"
  152. android:layout_width="wrap_content"
  153. android:layout_height="fill_parent"
  154. android:layout_gravity="center_vertical"
  155. android:gravity="center_vertical"
  156. android:background="@null"
  157. android:textSize="@dimen/textsize_13"
  158. android:textColor="@color/black"
  159. android:hint="请输入家具颜色"
  160. android:maxLength="100"
  161. android:imeOptions="actionDone"
  162. android:ellipsize="end"
  163. android:singleLine="true"/>
  164. </LinearLayout>
  165. <LinearLayout
  166. android:layout_width="fill_parent"
  167. android:layout_height="wrap_content"
  168. android:layout_alignParentBottom="true"
  169. android:layout_marginLeft="@dimen/ll_layout_marginBottom_30"
  170. android:layout_toRightOf="@id/furnitureColorTitle"
  171. android:background="@color/white"
  172. android:orientation="vertical" >
  173. <View
  174. android:layout_width="match_parent"
  175. android:layout_height="1dp"
  176. android:background="@color/lightgray" />
  177. </LinearLayout>
  178. </RelativeLayout>
  179. <RelativeLayout
  180. android:layout_width="match_parent"
  181. android:layout_height="@dimen/ll_layout_height_50" >
  182. <TextView
  183. android:id="@+id/houseTypeTitle"
  184. android:layout_width="80dp"
  185. android:layout_height="wrap_content"
  186. android:layout_centerVertical="true"
  187. android:layout_marginLeft="15dp"
  188. android:text="户 型"
  189. android:textColor="@color/black"
  190. android:textSize="@dimen/textsize_13" />
  191. <LinearLayout
  192. android:id="@+id/houseTypeLin"
  193. android:layout_width="match_parent"
  194. android:layout_height="wrap_content"
  195. android:layout_centerVertical="true"
  196. android:layout_marginLeft="@dimen/ll_layout_marginBottom_30"
  197. android:layout_toRightOf="@id/houseTypeTitle"
  198. android:orientation="horizontal" >
  199. <EditText
  200. android:id="@+id/et_housetype"
  201. android:layout_width="wrap_content"
  202. android:layout_height="fill_parent"
  203. android:layout_gravity="center_vertical"
  204. android:background="@null"
  205. android:gravity="center_vertical"
  206. android:singleLine="true"
  207. android:maxLength="50"
  208. android:textSize="@dimen/textsize_13"
  209. android:textColor="@color/black"
  210. android:hint="请输入户型"
  211. android:imeOptions="actionDone"
  212. android:ellipsize="end"/>
  213. </LinearLayout>
  214. <LinearLayout
  215. android:layout_width="fill_parent"
  216. android:layout_height="wrap_content"
  217. android:layout_alignParentBottom="true"
  218. android:layout_marginLeft="@dimen/ll_layout_marginBottom_30"
  219. android:layout_toRightOf="@id/houseTypeTitle"
  220. android:background="@color/white"
  221. android:orientation="vertical" >
  222. <View
  223. android:layout_width="match_parent"
  224. android:layout_height="1dp"
  225. android:background="@color/lightgray" />
  226. </LinearLayout>
  227. </RelativeLayout>
  228. <RelativeLayout
  229. android:layout_width="match_parent"
  230. android:layout_height="@dimen/ll_layout_height_50" >
  231. <TextView
  232. android:id="@+id/decorationCompanyTitle"
  233. android:layout_width="80dp"
  234. android:layout_height="wrap_content"
  235. android:layout_centerVertical="true"
  236. android:layout_marginLeft="15dp"
  237. android:text="装饰公司"
  238. android:textColor="@color/black"
  239. android:textSize="@dimen/textsize_13" />
  240. <LinearLayout
  241. android:id="@+id/decorationCompanyLin"
  242. android:layout_width="match_parent"
  243. android:layout_height="wrap_content"
  244. android:layout_centerVertical="true"
  245. android:layout_marginLeft="@dimen/ll_layout_marginBottom_30"
  246. android:layout_toRightOf="@id/decorationCompanyTitle"
  247. android:orientation="horizontal" >
  248. <EditText
  249. android:id="@+id/et_decorationcompany"
  250. android:layout_width="wrap_content"
  251. android:layout_height="fill_parent"
  252. android:layout_gravity="center_vertical"
  253. android:gravity="center_vertical"
  254. android:background="@null"
  255. android:singleLine="true"
  256. android:maxLength="100"
  257. android:textSize="@dimen/textsize_13"
  258. android:textColor="@color/black"
  259. android:hint="请输入装饰公司"
  260. android:imeOptions="actionDone"
  261. android:ellipsize="end"/>
  262. </LinearLayout>
  263. <LinearLayout
  264. android:layout_width="fill_parent"
  265. android:layout_height="wrap_content"
  266. android:layout_alignParentBottom="true"
  267. android:layout_marginLeft="@dimen/ll_layout_marginBottom_30"
  268. android:layout_toRightOf="@id/decorationCompanyTitle"
  269. android:background="@color/white"
  270. android:orientation="vertical" >
  271. <View
  272. android:layout_width="match_parent"
  273. android:layout_height="1dp"
  274. android:background="@color/lightgray" />
  275. </LinearLayout>
  276. </RelativeLayout>
  277. <RelativeLayout
  278. android:layout_width="match_parent"
  279. android:layout_height="@dimen/ll_layout_height_50" >
  280. <TextView
  281. android:id="@+id/showWayTitle"
  282. android:layout_width="80dp"
  283. android:layout_height="wrap_content"
  284. android:layout_centerVertical="true"
  285. android:layout_marginLeft="15dp"
  286. android:text="展示方式"
  287. android:textColor="@color/black"
  288. android:textSize="@dimen/textsize_13" />
  289. <LinearLayout
  290. android:id="@+id/showWayLin"
  291. android:layout_width="match_parent"
  292. android:layout_height="wrap_content"
  293. android:layout_centerVertical="true"
  294. android:layout_marginLeft="@dimen/ll_layout_marginBottom_30"
  295. android:layout_toRightOf="@id/showWayTitle"
  296. android:orientation="horizontal" >
  297. <EditText
  298. android:id="@+id/et_show_way"
  299. android:layout_width="wrap_content"
  300. android:layout_height="fill_parent"
  301. android:layout_gravity="center_vertical"
  302. android:gravity="center_vertical"
  303. android:background="@null"
  304. android:textSize="@dimen/textsize_13"
  305. android:textColor="@color/black"
  306. android:hint="请输入展示方式"
  307. android:maxLength="255"
  308. android:singleLine="true"
  309. android:imeOptions="actionDone"
  310. android:ellipsize="end"/>
  311. </LinearLayout>
  312. <LinearLayout
  313. android:layout_width="fill_parent"
  314. android:layout_height="wrap_content"
  315. android:layout_alignParentBottom="true"
  316. android:layout_marginLeft="@dimen/ll_layout_marginBottom_30"
  317. android:layout_toRightOf="@id/showWayTitle"
  318. android:background="@color/white"
  319. android:orientation="vertical" >
  320. <View
  321. android:layout_width="match_parent"
  322. android:layout_height="1dp"
  323. android:background="@color/lightgray" />
  324. </LinearLayout>
  325. </RelativeLayout>
  326. <RelativeLayout
  327. android:layout_width="match_parent"
  328. android:layout_height="@dimen/ll_layout_height_50" >
  329. <TextView
  330. android:id="@+id/startDateTitle"
  331. android:layout_width="80dp"
  332. android:layout_height="wrap_content"
  333. android:layout_centerVertical="true"
  334. android:layout_marginLeft="15dp"
  335. android:text="开工日期"
  336. android:textColor="@color/black"
  337. android:textSize="@dimen/textsize_13" />
  338. <LinearLayout
  339. android:id="@+id/ll_start_date"
  340. android:layout_width="match_parent"
  341. android:layout_height="wrap_content"
  342. android:layout_centerVertical="true"
  343. android:layout_marginLeft="@dimen/ll_layout_marginBottom_30"
  344. android:layout_toRightOf="@id/startDateTitle"
  345. android:orientation="horizontal" >
  346. <TextView
  347. android:id="@+id/tv_start_date"
  348. android:layout_width="wrap_content"
  349. android:layout_height="wrap_content"
  350. android:layout_gravity="center_vertical"
  351. android:background="@null"
  352. android:hint="请选择开工日期 "
  353. android:singleLine="true"
  354. android:text=""
  355. android:textColor="@color/black"
  356. android:textSize="@dimen/textsize_13" />
  357. <LinearLayout
  358. android:layout_width="match_parent"
  359. android:layout_height="wrap_content"
  360. android:gravity="right"
  361. android:orientation="horizontal" >
  362. <ImageView
  363. android:id="@+id/startDateIv"
  364. android:layout_width="wrap_content"
  365. android:layout_height="wrap_content"
  366. android:layout_gravity="center_vertical"
  367. android:layout_marginRight="15dp"
  368. android:src="@drawable/right" />
  369. </LinearLayout>
  370. </LinearLayout>
  371. <LinearLayout
  372. android:layout_width="fill_parent"
  373. android:layout_height="wrap_content"
  374. android:layout_alignParentBottom="true"
  375. android:layout_marginLeft="@dimen/ll_layout_marginBottom_30"
  376. android:layout_toRightOf="@id/startDateTitle"
  377. android:background="@color/white"
  378. android:orientation="vertical" >
  379. <View
  380. android:layout_width="match_parent"
  381. android:layout_height="1dp"
  382. android:background="@color/lightgray" />
  383. </LinearLayout>
  384. </RelativeLayout>
  385. </LinearLayout>
  386. </ScrollView>
  387. </LinearLayout>