zzz_personal_center_property_item.xml 1.4 KB

123456789101112131415161718192021222324252627282930313233343536
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:layout_width="match_parent"
  4. android:background="@drawable/zzz_single_user_center_text_selector"
  5. android:layout_height="match_parent">
  6. <ImageView
  7. android:id="@+id/zzz_item_icon"
  8. android:layout_width="wrap_content"
  9. android:layout_height="match_parent"
  10. android:layout_marginLeft="@dimen/zzz_single_usercenter_item_margin_left"
  11. />
  12. <TextView
  13. android:id="@+id/zzz_item_property"
  14. android:layout_width="wrap_content"
  15. android:layout_height="match_parent"
  16. android:layout_marginLeft="@dimen/zzz_single_usercenter_item_margin_right"
  17. android:layout_toRightOf="@id/zzz_item_icon"
  18. android:gravity="center_vertical"
  19. android:textColor="@color/zzz_single_usercenter_item_text_color"
  20. android:textSize="@dimen/zzz_single_usercenter_item_text_size"
  21. />
  22. <ImageView
  23. android:id="@+id/zzz_item_arrows"
  24. android:layout_width="wrap_content"
  25. android:layout_height="wrap_content"
  26. android:layout_alignParentRight="true"
  27. android:background="@drawable/zzz_single_my_arrow"
  28. android:layout_centerVertical="true"
  29. android:layout_marginRight="@dimen/zzz_single_usercenter_arrow_margin_right"
  30. />
  31. </RelativeLayout>