xunqu_lv_account_item.xml 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. <RelativeLayout 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. <RelativeLayout
  6. android:id="@+id/xunqu_float_btn_account_item_layout"
  7. android:layout_width="fill_parent"
  8. android:layout_height="50dp"
  9. android:layout_alignParentTop="true"
  10. android:layout_centerHorizontal="true"
  11. android:background="@drawable/xunqu_account_button_top" >
  12. <ImageView
  13. android:id="@+id/xunqu_float_btn_account_item_icon"
  14. android:layout_width="40dp"
  15. android:layout_height="40dp"
  16. android:layout_alignParentLeft="true"
  17. android:layout_centerVertical="true"
  18. android:layout_marginLeft="10dp"
  19. android:src="@drawable/xunqu_title_bar_logo" />
  20. <ImageView
  21. android:id="@+id/xunqu_float_btn_account_item_image"
  22. android:layout_width="30dp"
  23. android:layout_height="30dp"
  24. android:layout_alignParentRight="true"
  25. android:layout_centerVertical="true"
  26. android:layout_marginRight="10dp"
  27. android:src="@drawable/xunqu_back_icon" />
  28. <TextView
  29. android:id="@+id/xunqu_float_btn_account_item_name"
  30. android:layout_width="wrap_content"
  31. android:layout_height="wrap_content"
  32. android:layout_centerVertical="true"
  33. android:layout_marginLeft="10dp"
  34. android:layout_toRightOf="@+id/xunqu_float_btn_account_item_icon"
  35. android:text="修改密码"
  36. android:textSize="17dp"
  37. android:textColor="#000000" />
  38. <TextView
  39. android:id="@+id/xunqu_float_btn_account_item_bindPhone"
  40. android:layout_width="100dp"
  41. android:layout_height="fill_parent"
  42. android:layout_alignParentBottom="true"
  43. android:layout_alignParentTop="true"
  44. android:layout_marginRight="10dp"
  45. android:layout_marginLeft="20dp"
  46. android:layout_toLeftOf="@+id/xunqu_float_btn_account_item_image"
  47. android:layout_toRightOf="@+id/xunqu_float_btn_account_item_name"
  48. android:gravity="center|right"
  49. android:singleLine="true"
  50. android:text="未绑定"
  51. android:textColor="#FF0000"
  52. android:visibility="gone" />
  53. </RelativeLayout>
  54. </RelativeLayout>