zzz_wallet_property_item.xml 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  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="@color/zzz_white"
  5. android:layout_height="match_parent">
  6. <ImageView
  7. android:id="@+id/item_icon"
  8. android:layout_width="wrap_content"
  9. android:layout_height="match_parent"
  10. android:layout_marginLeft="@dimen/zzz_wallet_item_margin_left"
  11. />
  12. <TextView
  13. android:id="@+id/item_property"
  14. android:layout_width="wrap_content"
  15. android:layout_height="match_parent"
  16. android:layout_marginLeft="@dimen/zzz_wallet_item_margin_left"
  17. android:layout_toRightOf="@id/item_icon"
  18. android:gravity="center_vertical"
  19. android:textSize="@dimen/zzz_wallet_item_name"/>
  20. <TextView
  21. android:id="@+id/item_value"
  22. android:layout_width="wrap_content"
  23. android:layout_height="match_parent"
  24. android:layout_marginRight="@dimen/zzz_wallet_item_value_margin_right"
  25. android:layout_toLeftOf="@+id/item_arrows"
  26. android:gravity="center_vertical"
  27. android:textSize="@dimen/zzz_wallet_item_value"/>
  28. <ImageView
  29. android:id="@id/item_arrows"
  30. android:layout_width="wrap_content"
  31. android:layout_height="wrap_content"
  32. android:layout_alignParentRight="true"
  33. android:layout_centerVertical="true"
  34. android:layout_marginRight="@dimen/zzz_wallet_item_margin_left"
  35. android:background="@drawable/zzz_user_info_item_indicate"
  36. />
  37. </RelativeLayout>