item_bankcard.xml 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:layout_width="match_parent"
  4. android:layout_height="wrap_content"
  5. android:background="@color/normal_bg"
  6. android:orientation="vertical">
  7. <TextView
  8. android:id="@+id/tv_bank_name"
  9. android:layout_width="wrap_content"
  10. android:layout_height="wrap_content"
  11. android:layout_marginTop="5dp"
  12. android:layout_marginLeft="10dp"
  13. android:text="XXXX银行"
  14. android:textColor="@color/black"
  15. android:textSize="15sp"/>
  16. <TextView
  17. android:id="@+id/tv_name"
  18. android:layout_width="wrap_content"
  19. android:layout_height="wrap_content"
  20. android:layout_marginTop="5dp"
  21. android:layout_marginLeft="10dp"
  22. android:text="xingming "
  23. android:textColor="@color/black"
  24. android:textSize="15sp"/>
  25. <TextView
  26. android:id="@+id/tv_card_num"
  27. android:layout_width="wrap_content"
  28. android:layout_height="wrap_content"
  29. android:layout_marginTop="5dp"
  30. android:layout_marginLeft="10dp"
  31. android:text="***********234 "
  32. android:textColor="@color/black"
  33. android:textSize="18sp"/>
  34. <View
  35. android:layout_width="match_parent"
  36. android:layout_height="5dp"
  37. android:layout_marginTop="5dp"
  38. android:background="#dddddd"/>
  39. </LinearLayout>