tysdkn_fragment_gift_center.xml 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. xmlns:tools="http://schemas.android.com/tools"
  4. android:id="@+id/tysdkn_gift_bg_ll"
  5. android:layout_width="match_parent"
  6. android:layout_height="match_parent"
  7. android:orientation="vertical">
  8. <!--<ScrollView-->
  9. <!--android:layout_width="match_parent"-->
  10. <!--android:layout_height="match_parent">-->
  11. <LinearLayout
  12. android:layout_width="match_parent"
  13. android:layout_height="wrap_content"
  14. android:orientation="vertical">
  15. <LinearLayout
  16. android:layout_width="wrap_content"
  17. android:layout_height="wrap_content"
  18. android:layout_gravity="center_horizontal"
  19. android:layout_marginTop="8dp"
  20. android:orientation="horizontal">
  21. <TextView
  22. android:id="@+id/tysdkn_tv_current_game"
  23. android:layout_width="68dp"
  24. android:layout_height="28dp"
  25. android:background="@drawable/tysdkn_bg_left_blue"
  26. android:gravity="center"
  27. android:text="新礼包"
  28. android:textColor="#ffffff"
  29. android:textSize="12sp" />
  30. <TextView
  31. android:id="@+id/tysdkn_tv_cunhao_case"
  32. android:layout_width="68dp"
  33. android:layout_height="28dp"
  34. android:background="@drawable/tysdkn_bg_right_black"
  35. android:gravity="center"
  36. android:text="已领取"
  37. android:textColor="#30B8FF"
  38. android:textSize="12sp" />
  39. </LinearLayout>
  40. <FrameLayout
  41. android:layout_marginTop="3dp"
  42. android:layout_width="match_parent"
  43. android:layout_height="wrap_content">
  44. <include layout="@layout/tysdkn_nothing" />
  45. <include layout="@layout/tysdkn_progressbar" />
  46. <RelativeLayout
  47. android:id="@+id/tysdkn_rl_current_game"
  48. android:layout_width="match_parent"
  49. android:layout_height="wrap_content"
  50. android:visibility="gone"
  51. tools:visibility="visible">
  52. <ListView
  53. android:id="@+id/tysdkn_lv_current_game"
  54. android:layout_width="match_parent"
  55. android:layout_height="wrap_content"
  56. android:layout_marginBottom="10dp"
  57. android:background="@android:color/transparent"
  58. android:scrollbars="none"
  59. android:divider="@null" />
  60. </RelativeLayout>
  61. <RelativeLayout
  62. android:id="@+id/tysdkn_rl_cunhao_case"
  63. android:layout_width="match_parent"
  64. android:layout_height="match_parent"
  65. android:visibility="gone">
  66. <ListView
  67. android:id="@+id/tysdkn_lv_cunhao_case"
  68. android:layout_width="match_parent"
  69. android:layout_height="wrap_content"
  70. android:layout_marginTop="10dp"
  71. android:background="@android:color/transparent"
  72. android:scrollbars="none"
  73. />
  74. </RelativeLayout>
  75. </FrameLayout>
  76. </LinearLayout>
  77. <!--</ScrollView>-->
  78. </LinearLayout>