30 lines
988 B
XML
30 lines
988 B
XML
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
android:id="@+id/root"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="match_parent">
|
||
|
|
||
|
<FrameLayout
|
||
|
android:id="@+id/container"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="match_parent" />
|
||
|
|
||
|
<ImageView
|
||
|
android:id="@+id/btn_back"
|
||
|
android:layout_width="40dp"
|
||
|
android:layout_height="40dp"
|
||
|
android:layout_marginLeft="6dp"
|
||
|
android:layout_marginTop="30dp"
|
||
|
android:onClick="backClick"
|
||
|
android:padding="9dp"
|
||
|
android:src="@mipmap/icon_video_music_back"
|
||
|
android:tint="@color/white"
|
||
|
android:visibility="visible" />
|
||
|
|
||
|
<View
|
||
|
android:id="@+id/viewBottom"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="0dp"
|
||
|
android:layout_gravity="center"
|
||
|
android:visibility="invisible" />
|
||
|
</FrameLayout>
|