123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100 |
- <?xml version="1.0" encoding="utf-8"?>
- <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- xmlns:tools="http://schemas.android.com/tools"
- android:id="@+id/tysdkn_gift_bg_ll"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:orientation="vertical">
- <!--<ScrollView-->
- <!--android:layout_width="match_parent"-->
- <!--android:layout_height="match_parent">-->
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:orientation="vertical">
- <LinearLayout
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_gravity="center_horizontal"
- android:layout_marginTop="8dp"
- android:orientation="horizontal">
- <TextView
- android:id="@+id/tysdkn_tv_current_game"
- android:layout_width="68dp"
- android:layout_height="28dp"
- android:background="@drawable/tysdkn_bg_left_blue"
- android:gravity="center"
- android:text="新礼包"
- android:textColor="#ffffff"
- android:textSize="12sp" />
- <TextView
- android:id="@+id/tysdkn_tv_cunhao_case"
- android:layout_width="68dp"
- android:layout_height="28dp"
- android:background="@drawable/tysdkn_bg_right_black"
- android:gravity="center"
- android:text="已领取"
- android:textColor="#30B8FF"
- android:textSize="12sp" />
- </LinearLayout>
- <FrameLayout
- android:layout_marginTop="3dp"
- android:layout_width="match_parent"
- android:layout_height="wrap_content">
- <include layout="@layout/tysdkn_nothing" />
- <include layout="@layout/tysdkn_progressbar" />
- <RelativeLayout
- android:id="@+id/tysdkn_rl_current_game"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:visibility="gone"
- tools:visibility="visible">
- <ListView
- android:id="@+id/tysdkn_lv_current_game"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_marginBottom="10dp"
- android:background="@android:color/transparent"
- android:scrollbars="none"
- android:divider="@null" />
- </RelativeLayout>
- <RelativeLayout
- android:id="@+id/tysdkn_rl_cunhao_case"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:visibility="gone">
- <ListView
- android:id="@+id/tysdkn_lv_cunhao_case"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_marginTop="10dp"
- android:background="@android:color/transparent"
- android:scrollbars="none"
- />
- </RelativeLayout>
- </FrameLayout>
- </LinearLayout>
- <!--</ScrollView>-->
- </LinearLayout>
|