60 lines
1.9 KiB
XML
60 lines
1.9 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<com.yunbao.common.views.weight.MyDrawerLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:id="@+id/drawer_layout"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
|
|
|
|
<FrameLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
|
|
<ImageView
|
|
android:id="@+id/live_back"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:scaleType="centerCrop"
|
|
android:src="@mipmap/live_bg" />
|
|
|
|
<View
|
|
android:id="@+id/mask"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:background="#80000000" />
|
|
|
|
<FrameLayout
|
|
android:id="@+id/play_container"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent" />
|
|
|
|
|
|
<com.yunbao.common.custom.MyViewPager
|
|
android:id="@+id/viewPager"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:overScrollMode="never" />
|
|
|
|
<FrameLayout
|
|
android:id="@+id/page_container"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent" />
|
|
|
|
|
|
<ImageView
|
|
android:id="@+id/btn_small_screen"
|
|
android:layout_width="35dp"
|
|
android:layout_height="35dp"
|
|
android:layout_gravity="right"
|
|
android:layout_marginTop="30dp"
|
|
android:layout_marginRight="20dp"
|
|
android:padding="5dp"
|
|
android:src="@mipmap/icon_live_close"
|
|
android:visibility="gone" />
|
|
</FrameLayout>
|
|
|
|
<include
|
|
android:id="@+id/loading"
|
|
layout="@layout/layout_portrait_live_item" />
|
|
|
|
|
|
</com.yunbao.common.views.weight.MyDrawerLayout> |