fragment_me.xml 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408
  1. <ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
  2. xmlns:tools="http://schemas.android.com/tools"
  3. android:layout_width="match_parent"
  4. android:layout_height="match_parent"
  5. android:background="@drawable/bg_main">
  6. <LinearLayout
  7. android:layout_width="match_parent"
  8. android:layout_height="wrap_content"
  9. android:orientation="vertical">
  10. <RelativeLayout
  11. android:id="@+id/info_rl"
  12. style="@style/IMTbleLine_UP_">
  13. <ImageView
  14. android:id="@+id/avatar_img"
  15. android:layout_width="60dp"
  16. android:layout_height="60dp"
  17. android:layout_alignParentLeft="true"
  18. android:layout_centerVertical="true"
  19. android:contentDescription="@string/app_name"
  20. android:src="@drawable/avatar_normal_u" />
  21. <RelativeLayout
  22. android:id="@+id/simple_info_rl"
  23. android:layout_width="match_parent"
  24. android:layout_height="wrap_content"
  25. android:layout_centerVertical="true"
  26. android:layout_marginLeft="10dp"
  27. android:layout_marginRight="10dp"
  28. android:layout_toRightOf="@+id/avatar_img">
  29. <TextView
  30. android:id="@+id/nick_name_tv"
  31. android:layout_width="fill_parent"
  32. android:layout_height="wrap_content"
  33. android:layout_centerVertical="true"
  34. android:layout_toLeftOf="@+id/phone_number_tv"
  35. android:singleLine="true"
  36. android:textColor="@color/text_main"
  37. android:textSize="@dimen/text_main" />
  38. <TextView
  39. android:id="@+id/phone_number_tv"
  40. android:layout_width="wrap_content"
  41. android:layout_height="wrap_content"
  42. android:layout_alignParentRight="true"
  43. android:layout_centerVertical="true"
  44. android:singleLine="true"
  45. android:textColor="@color/text_hine"
  46. android:textSize="@dimen/text_hine" />
  47. </RelativeLayout>
  48. <ImageView
  49. android:layout_width="@dimen/next_width"
  50. android:layout_height="@dimen/next_height"
  51. android:layout_alignParentRight="true"
  52. android:layout_centerVertical="true"
  53. android:background="@drawable/set_list_next"
  54. android:contentDescription="@string/app_name"
  55. android:alpha="0.26"
  56. />
  57. </RelativeLayout>
  58. <View
  59. android:layout_width="match_parent"
  60. android:layout_height="@dimen/line"
  61. android:background="@color/item_line" />
  62. <RelativeLayout
  63. android:id="@+id/my_data_rl"
  64. android:visibility="gone"
  65. style="@style/IMTbleLine_UP_Me"
  66. >
  67. <TextView
  68. android:layout_width="wrap_content"
  69. android:layout_height="wrap_content"
  70. android:layout_centerVertical="true"
  71. android:drawableLeft="@drawable/my_inf"
  72. android:drawablePadding="10dp"
  73. android:gravity="center"
  74. android:text="@string/my_data"
  75. android:textColor="@color/text_main"
  76. android:textSize="@dimen/text_main" />
  77. <ImageView
  78. android:layout_width="@dimen/next_width"
  79. android:layout_height="@dimen/next_height"
  80. android:layout_alignParentRight="true"
  81. android:layout_centerVertical="true"
  82. android:alpha="0.26"
  83. android:background="@drawable/set_list_next"
  84. android:contentDescription="@string/app_name" />
  85. </RelativeLayout>
  86. <View
  87. android:layout_width="match_parent"
  88. android:layout_height="@dimen/line"
  89. android:visibility="gone"
  90. android:background="@color/item_line" />
  91. <RelativeLayout
  92. android:id="@+id/my_friend_rl"
  93. android:visibility="gone"
  94. style="@style/IMTbleLine_UP_Me">
  95. <TextView
  96. android:layout_width="wrap_content"
  97. android:layout_height="wrap_content"
  98. android:layout_centerVertical="true"
  99. android:drawableLeft="@drawable/my_friend"
  100. android:drawablePadding="10dp"
  101. android:gravity="center"
  102. android:text="@string/my_friend"
  103. android:textColor="@color/text_main"
  104. android:textSize="@dimen/text_main" />
  105. <ImageView
  106. android:layout_width="@dimen/next_width"
  107. android:layout_height="@dimen/next_height"
  108. android:layout_alignParentRight="true"
  109. android:layout_centerVertical="true"
  110. android:alpha="0.26"
  111. android:background="@drawable/set_list_next"
  112. android:contentDescription="@string/app_name" />
  113. </RelativeLayout>
  114. <View
  115. android:layout_width="match_parent"
  116. android:layout_height="@dimen/line"
  117. android:visibility="gone"
  118. android:background="@color/item_line" />
  119. <RelativeLayout
  120. android:id="@+id/my_space_rl"
  121. android:visibility="gone"
  122. style="@style/IMTbleLine_UP_Me">
  123. <TextView
  124. android:layout_width="wrap_content"
  125. android:layout_height="wrap_content"
  126. android:layout_centerVertical="true"
  127. android:drawableLeft="@drawable/set_fans_u"
  128. android:drawablePadding="10dp"
  129. android:gravity="center"
  130. android:text="@string/my_space"
  131. android:textColor="@color/text_main"
  132. android:textSize="@dimen/text_main" />
  133. <ImageView
  134. android:layout_width="@dimen/next_width"
  135. android:layout_height="@dimen/next_height"
  136. android:layout_alignParentRight="true"
  137. android:layout_centerVertical="true"
  138. android:alpha="0.26"
  139. android:background="@drawable/set_list_next"
  140. android:contentDescription="@string/app_name"
  141. android:id="@+id/imageView" />
  142. <LinearLayout
  143. android:orientation="horizontal"
  144. android:layout_width="match_parent"
  145. android:layout_height="match_parent"
  146. android:layout_alignBottom="@+id/imageView"
  147. android:layout_alignParentRight="true"
  148. android:layout_alignParentEnd="true"></LinearLayout>
  149. </RelativeLayout>
  150. <View
  151. android:layout_width="match_parent"
  152. android:layout_height="@dimen/line"
  153. android:background="@color/item_line" />
  154. <RelativeLayout
  155. android:id="@+id/local_video_rl"
  156. style="@style/IMTbleLine_UP_Me">
  157. <TextView
  158. android:layout_width="wrap_content"
  159. android:layout_height="wrap_content"
  160. android:layout_centerVertical="true"
  161. android:drawableLeft="@drawable/my_video"
  162. android:drawablePadding="10dp"
  163. android:gravity="center"
  164. android:text="@string/local_video"
  165. android:textColor="@color/text_main"
  166. android:textSize="@dimen/text_main" />
  167. <ImageView
  168. android:layout_width="@dimen/next_width"
  169. android:layout_height="@dimen/next_height"
  170. android:layout_alignParentRight="true"
  171. android:layout_centerVertical="true"
  172. android:alpha="0.26"
  173. android:background="@drawable/set_list_next"
  174. android:contentDescription="@string/app_name" />
  175. </RelativeLayout>
  176. <View
  177. android:layout_width="match_parent"
  178. android:layout_height="@dimen/line"
  179. android:background="@color/item_line" />
  180. <!--公司-->
  181. <RelativeLayout
  182. android:id="@+id/rl_company_change"
  183. style="@style/IMTbleLine_UP_Me"
  184. android:layout_marginTop="7dp">
  185. <TextView
  186. android:id="@+id/company_text"
  187. android:layout_width="wrap_content"
  188. android:layout_height="wrap_content"
  189. android:layout_centerVertical="true"
  190. android:drawableLeft="@drawable/my_company"
  191. android:drawablePadding="10dp"
  192. android:gravity="center"
  193. android:text="@string/change_company"
  194. android:textColor="@color/text_main"
  195. android:textSize="@dimen/text_main" />
  196. <TextView
  197. android:id="@+id/company_tv"
  198. style="@style/IMTbleLine_TextValue"
  199. android:layout_toLeftOf="@+id/company_arrow_img"
  200. android:layout_toRightOf="@+id/company_text"
  201. android:textColor="@color/text_hine"
  202. android:textSize="@dimen/text_hine" />
  203. <ImageView
  204. android:id="@+id/company_arrow_img"
  205. android:layout_width="@dimen/next_width"
  206. android:layout_height="@dimen/next_height"
  207. android:layout_alignParentRight="true"
  208. android:layout_centerVertical="true"
  209. android:alpha="0.26"
  210. android:background="@drawable/set_list_next"
  211. android:contentDescription="@string/app_name" />
  212. </RelativeLayout>
  213. <View
  214. android:layout_width="match_parent"
  215. android:layout_height="@dimen/line"
  216. android:background="@color/item_line" />
  217. <!--账套-->
  218. <RelativeLayout
  219. android:id="@+id/rl_master_change"
  220. style="@style/IMTbleLine_UP_Me">
  221. <TextView
  222. android:id="@+id/master_text"
  223. android:layout_width="wrap_content"
  224. android:layout_height="wrap_content"
  225. android:layout_centerVertical="true"
  226. android:drawableLeft="@drawable/zhang_dao"
  227. android:drawablePadding="10dp"
  228. android:gravity="center"
  229. android:text="@string/change_master"
  230. android:textColor="@color/text_main"
  231. android:textSize="@dimen/text_main" />
  232. <TextView
  233. android:id="@+id/master_tv"
  234. style="@style/IMTbleLine_TextValue"
  235. android:layout_toLeftOf="@+id/master_arrow_img"
  236. android:layout_toRightOf="@+id/master_text"
  237. android:textColor="@color/text_hine"
  238. android:textSize="@dimen/text_hine" />
  239. <ImageView
  240. android:id="@+id/master_arrow_img"
  241. android:layout_width="@dimen/next_width"
  242. android:layout_height="@dimen/next_height"
  243. android:layout_alignParentRight="true"
  244. android:layout_centerVertical="true"
  245. android:alpha="0.26"
  246. android:background="@drawable/set_list_next"
  247. android:contentDescription="@string/app_name" />
  248. </RelativeLayout>
  249. <View
  250. android:layout_width="match_parent"
  251. android:layout_height="@dimen/line"
  252. android:background="@color/item_line" />
  253. <RelativeLayout
  254. android:id="@+id/my_erp_rl"
  255. style="@style/IMTbleLine_UP_Me">
  256. <TextView
  257. android:id="@+id/uas_text"
  258. android:layout_width="wrap_content"
  259. android:layout_height="wrap_content"
  260. android:layout_centerVertical="true"
  261. android:drawableLeft="@drawable/usa_zhanghu"
  262. android:drawablePadding="10dp"
  263. android:gravity="center"
  264. android:text="@string/my_uas"
  265. android:textColor="@color/text_main"
  266. android:textSize="@dimen/text_main" />
  267. <TextView
  268. android:id="@+id/tv_uas_login"
  269. style="@style/IMTbleLine_TextValue"
  270. android:layout_toLeftOf="@+id/uas_arrow_img"
  271. android:layout_toRightOf="@+id/uas_text"
  272. android:text="未登录"
  273. android:textColor="@color/text_hine"
  274. android:textSize="@dimen/text_hine" />
  275. <ImageView
  276. android:id="@+id/uas_arrow_img"
  277. android:layout_width="@dimen/next_width"
  278. android:layout_height="@dimen/next_height"
  279. android:layout_alignParentRight="true"
  280. android:layout_centerVertical="true"
  281. android:alpha="0.26"
  282. android:background="@drawable/set_list_next"
  283. android:contentDescription="@string/app_name" />
  284. </RelativeLayout>
  285. <View
  286. android:layout_width="match_parent"
  287. android:layout_height="@dimen/line"
  288. android:background="@color/item_line" />
  289. <RelativeLayout
  290. android:id="@+id/my_b2b_rl"
  291. style="@style/IMTbleLine_UP_Me"
  292. android:layout_marginTop="7dp">
  293. <TextView
  294. android:id="@+id/b2b_text"
  295. android:layout_width="wrap_content"
  296. android:layout_height="wrap_content"
  297. android:layout_centerVertical="true"
  298. android:drawableLeft="@drawable/btob"
  299. android:drawablePadding="10dp"
  300. android:gravity="center"
  301. android:text="@string/my_b2b"
  302. android:textColor="@color/text_main"
  303. android:textSize="@dimen/text_main" />
  304. <TextView
  305. android:id="@+id/tv_b2b_login"
  306. style="@style/IMTbleLine_TextValue"
  307. android:layout_toLeftOf="@+id/b2b_arrow_img"
  308. android:layout_toRightOf="@+id/b2b_text"
  309. android:text="未登录"
  310. android:textColor="@color/text_hine"
  311. android:textSize="@dimen/text_hine" />
  312. <ImageView
  313. android:id="@+id/b2b_arrow_img"
  314. android:layout_width="@dimen/next_width"
  315. android:layout_height="@dimen/next_height"
  316. android:layout_alignParentRight="true"
  317. android:layout_centerVertical="true"
  318. android:alpha="0.26"
  319. android:background="@drawable/set_list_next"
  320. android:contentDescription="@string/app_name" />
  321. </RelativeLayout>
  322. <View
  323. android:layout_width="match_parent"
  324. android:layout_height="1dp" />
  325. <View
  326. android:layout_width="match_parent"
  327. android:layout_height="@dimen/line"
  328. android:background="@color/item_line" />
  329. <RelativeLayout
  330. android:id="@+id/setting_rl"
  331. style="@style/IMTbleLine_UP_Me"
  332. android:layout_marginTop="7dp">
  333. <TextView
  334. android:layout_width="wrap_content"
  335. android:layout_height="wrap_content"
  336. android:layout_centerVertical="true"
  337. android:drawableLeft="@drawable/title_set"
  338. android:drawablePadding="10dp"
  339. android:gravity="center"
  340. android:text="@string/setting"
  341. android:textColor="@color/text_main"
  342. android:textSize="@dimen/text_main" />
  343. <ImageView
  344. android:layout_width="@dimen/next_width"
  345. android:layout_height="@dimen/next_height"
  346. android:layout_alignParentRight="true"
  347. android:layout_centerVertical="true"
  348. android:alpha="0.26"
  349. android:background="@drawable/set_list_next"
  350. android:contentDescription="@string/app_name" />
  351. </RelativeLayout>
  352. <View
  353. android:layout_width="match_parent"
  354. android:layout_height="@dimen/line"
  355. android:background="@color/item_line" />
  356. </LinearLayout>
  357. </ScrollView>