bssdk_fragment_tab_user_voucher.xml 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout
  3. xmlns:android="http://schemas.android.com/apk/res/android"
  4. xmlns:app="http://schemas.android.com/apk/res-auto"
  5. android:layout_width="match_parent"
  6. android:layout_height="match_parent"
  7. android:background="@color/main_color"
  8. android:orientation="vertical">
  9. <LinearLayout
  10. android:layout_width="match_parent"
  11. android:layout_height="wrap_content"
  12. android:orientation="horizontal"
  13. android:paddingBottom="@dimen/DIMEN_2DP"
  14. android:paddingLeft="@dimen/DIMEN_19DP"
  15. android:paddingRight="@dimen/DIMEN_19DP"
  16. android:paddingTop="@dimen/DIMEN_20DP"
  17. android:weightSum="20">
  18. <TextView
  19. android:layout_width="0dp"
  20. android:layout_height="wrap_content"
  21. android:layout_weight="6"
  22. android:text="有效时间"
  23. android:textColor="@color/white"
  24. android:textSize="@dimen/TEXT_SIZE_12SP"/>
  25. <TextView
  26. android:layout_width="0dp"
  27. android:layout_height="wrap_content"
  28. android:layout_weight="4"
  29. android:text="金额(元)"
  30. android:textColor="@color/white"
  31. android:textSize="@dimen/TEXT_SIZE_12SP"/>
  32. <TextView
  33. android:layout_width="0dp"
  34. android:layout_height="wrap_content"
  35. android:layout_weight="6"
  36. android:text="适用游戏"
  37. android:textColor="@color/white"
  38. android:textSize="@dimen/TEXT_SIZE_12SP"/>
  39. <TextView
  40. android:layout_width="0dp"
  41. android:layout_height="wrap_content"
  42. android:layout_weight="4"
  43. android:text="使用状态"
  44. android:textColor="@color/white"
  45. android:textSize="@dimen/TEXT_SIZE_12SP"/>
  46. </LinearLayout>
  47. <View
  48. android:layout_width="match_parent"
  49. android:layout_height="@dimen/DIMEN_1DP"
  50. android:layout_marginLeft="@dimen/DIMEN_19DP"
  51. android:layout_marginRight="@dimen/DIMEN_19DP"
  52. android:background="@color/line_bg171d3c"/>
  53. <RelativeLayout
  54. android:layout_width="match_parent"
  55. android:layout_height="match_parent">
  56. <com.bluestacks.sdk.widget.customview.BSLoadListView
  57. android:id="@+id/lv_user_voucher"
  58. android:layout_width="match_parent"
  59. android:layout_height="match_parent"
  60. android:layout_marginLeft="@dimen/DIMEN_19DP"
  61. android:listSelector="@drawable/bssdk_item_bg_selector"
  62. android:visibility="gone"/>
  63. <com.bluestacks.sdk.widget.customview.BSCustomEmptyView
  64. android:id="@+id/cev_user_voucher"
  65. android:layout_width="match_parent"
  66. android:layout_height="match_parent"/>
  67. </RelativeLayout>
  68. </LinearLayout>