bdp_paycenter_paymode_item_card.xml 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  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:layout_height="50dp" >
  5. <LinearLayout
  6. android:layout_width="match_parent"
  7. android:layout_height="50dp"
  8. android:gravity="center_vertical"
  9. android:orientation="horizontal" >
  10. <ImageView
  11. android:id="@+id/bdp_paycenter_iv_payment_icon"
  12. android:layout_width="27dp"
  13. android:layout_height="27dp"
  14. android:layout_marginLeft="20dp"
  15. android:src="@color/bdp_white" />
  16. <TextView
  17. android:id="@+id/bdp_paycenter_tv_payment_text"
  18. android:layout_width="wrap_content"
  19. android:layout_height="wrap_content"
  20. android:layout_marginLeft="15dp"
  21. android:text="@string/bdp_paycenter_ku_bi_exchange"
  22. android:textColor="#333333"
  23. android:textSize="14sp" />
  24. <ImageView
  25. android:id="@+id/bdp_paycenter_iv_payment_ic_mark"
  26. android:layout_width="33dp"
  27. android:layout_height="12dp"
  28. android:layout_marginLeft="10dp"
  29. android:adjustViewBounds="true"
  30. android:src="@drawable/bdp_bg_pay_icon_mark_discount"
  31. android:visibility="gone" />
  32. </LinearLayout>
  33. <View
  34. android:id="@+id/bdp_paycenter_iv_payment_sep"
  35. android:layout_width="match_parent"
  36. android:layout_height="1px"
  37. android:layout_alignParentBottom="true"
  38. android:background="#d8d8d8" />
  39. <ImageView
  40. android:layout_width="18dp"
  41. android:layout_height="18dp"
  42. android:layout_alignParentRight="true"
  43. android:layout_centerVertical="true"
  44. android:layout_marginRight="18dp"
  45. android:src="@drawable/bdp_ic_check_empty" />
  46. </RelativeLayout>