2022-07-18 15:31:45 +08:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2022-08-20 15:33:41 +08:00
|
|
|
<com.yunbao.common.views.weight.MyDrawerLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2022-08-17 09:29:24 +08:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
|
android:id="@+id/drawer_layout"
|
2022-07-18 15:31:45 +08:00
|
|
|
android:layout_width="match_parent"
|
2022-08-17 09:29:24 +08:00
|
|
|
android:layout_height="match_parent">
|
2022-07-18 15:31:45 +08:00
|
|
|
|
2022-08-20 15:33:41 +08:00
|
|
|
|
2022-07-18 15:31:45 +08:00
|
|
|
<FrameLayout
|
|
|
|
android:layout_width="match_parent"
|
2022-08-17 09:29:24 +08:00
|
|
|
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
|
2022-08-26 09:52:04 +08:00
|
|
|
android:id="@+id/mask"
|
2022-08-17 09:29:24 +08:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
2022-09-01 10:40:04 +08:00
|
|
|
android:background="#80000000" />
|
2022-08-17 09:29:24 +08:00
|
|
|
|
|
|
|
<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" />
|
2022-07-18 15:31:45 +08:00
|
|
|
|
2022-08-17 09:29:24 +08:00
|
|
|
|
|
|
|
<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>
|
2022-07-18 15:31:45 +08:00
|
|
|
|
2022-08-17 09:29:24 +08:00
|
|
|
|
2022-07-18 15:31:45 +08:00
|
|
|
|
2022-08-20 15:33:41 +08:00
|
|
|
</com.yunbao.common.views.weight.MyDrawerLayout>
|