zzz_single_personal_center.xml 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:orientation="vertical"
  4. android:background="@color/zzz_single_seperate_line_color"
  5. android:layout_width="match_parent"
  6. android:layout_height="match_parent">
  7. <include
  8. android:id="@+id/zzz_title"
  9. layout="@layout/zzz_second_title_layout"/>
  10. <View
  11. android:id="@+id/zzz_transparent_view"
  12. android:layout_below="@id/zzz_title"
  13. android:layout_width="match_parent"
  14. android:layout_height="@dimen/zzz_title_gradient_height"
  15. android:background="@drawable/zzz_title_gradient"/>
  16. <include
  17. android:id="@+id/zzz_user_center_header"
  18. android:layout_below="@id/zzz_title"
  19. android:layout_width="match_parent"
  20. android:layout_height="@dimen/zzz_single_usercenter_header_height"
  21. layout="@layout/zzz_single_user_center_header"/>
  22. <include
  23. android:id="@+id/zzz_my_message"
  24. android:layout_below="@id/zzz_user_center_header"
  25. android:layout_width="match_parent"
  26. android:layout_height="@dimen/zzz_single_usercenter_item_height"
  27. layout="@layout/zzz_personal_center_property_item"/>
  28. <include
  29. android:id="@+id/zzz_my_gift"
  30. android:layout_marginTop="@dimen/zzz_single_usercenter_separate_line_height"
  31. android:layout_below="@id/zzz_my_message"
  32. android:layout_width="match_parent"
  33. android:layout_height="@dimen/zzz_single_usercenter_item_height"
  34. layout="@layout/zzz_personal_center_property_item"/>
  35. <include
  36. android:id="@+id/zzz_my_feed_back"
  37. android:layout_marginTop="@dimen/zzz_single_usercenter_separate_line_height"
  38. android:layout_below="@id/zzz_my_gift"
  39. android:layout_width="match_parent"
  40. android:layout_height="@dimen/zzz_single_usercenter_item_height"
  41. layout="@layout/zzz_personal_center_property_item"/>
  42. <TextView
  43. android:id="@+id/zzz_switch_account"
  44. android:layout_width="match_parent"
  45. android:layout_height="@dimen/zzz_single_usercenter_item_height"
  46. android:layout_marginBottom="@dimen/zzz_single_usercenter_switch_account_margin_bottom"
  47. android:gravity="center"
  48. android:textSize="@dimen/zzz_single_usercenter_switch_account_text_size"
  49. android:background="@drawable/zzz_single_user_center_text_selector"
  50. android:layout_alignParentBottom="true"
  51. android:text="@string/zzz_single_switch_account"
  52. />
  53. </RelativeLayout>