123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113 |
- <?xml version="1.0" encoding="utf-8"?>
- <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- >
- <!--加载动画-->
- <LinearLayout
- android:id="@+id/loading"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:gravity="center"
- android:orientation="vertical"
- android:visibility="gone">
- <ProgressBar
- android:layout_width="50dp"
- android:layout_height="50dp"
- />
- <!--<TextView-->
- <!--android:id="@+id/load_text"-->
- <!--android:layout_width="wrap_content"-->
- <!--android:layout_height="wrap_content"-->
- <!--android:layout_marginTop="8dp"-->
- <!--android:text="正在缓冲..."-->
- <!--android:textColor="@android:color/white"-->
- <!--android:textSize="13sp"/>-->
- </LinearLayout>
- <RelativeLayout
- android:id="@+id/controll_rl"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:visibility="gone">
- <LinearLayout
- android:id="@+id/close_LL"
- android:layout_width="100dp"
- android:layout_height="30dp"
- android:layout_marginTop="15dp"
- android:layout_marginLeft="15dp"
- android:orientation="horizontal"
- android:gravity="center"
- >
- <!--<TextView-->
- <!--android:id="@+id/reward_tv"-->
- <!--android:layout_width="wrap_content"-->
- <!--android:layout_height="wrap_content"-->
- <!--android:text="观看15秒后,可获得奖励"-->
- <!--android:textColor="@color/jmfont_white"-->
- <!--android:textSize="16sp"-->
- <!--android:gravity="center_horizontal"-->
- <!--android:layout_marginLeft="10dp"-->
- <!--/>-->
- <TextView
- android:id="@+id/count_time"
- android:layout_marginLeft="15dp"
- android:background="@drawable/bt_circle_bg"
- android:gravity="center"
- android:textSize="13sp"
- android:textColor="@android:color/white"
- android:layout_height="28dp"
- android:layout_width="28dp"
- />
- <Button
- android:id="@+id/volume_btn"
- android:layout_width="24dp"
- android:layout_height="24dp"
- android:layout_marginLeft="15dp"
- android:scaleType="fitXY"
- />
- <LinearLayout
- android:id="@+id/count_time_layout"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginLeft="5dp"
- android:orientation="horizontal">
- </LinearLayout>
- </LinearLayout>
- <LinearLayout
- android:id="@+id/banner"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:background="@color/jm_transparent"
- android:animateLayoutChanges="true"
- android:layoutAnimation="@anim/jmad_layout_anim"
- android:orientation="horizontal"
- android:layout_marginLeft="5dp"
- android:layout_marginRight="5dp"
- android:layout_marginBottom="8dp"
- android:layout_alignParentBottom="true"></LinearLayout>
- <Button
- android:id="@+id/close_btn"
- android:layout_width="28dp"
- android:layout_height="28dp"
- android:background="@drawable/jmad_close"
- android:scaleType="fitXY"
- android:layout_alignParentRight="true"
- android:layout_marginRight="20dp"
- android:layout_marginTop="20dp"
- android:visibility="gone"/>
- </RelativeLayout>
- </RelativeLayout>
|