22 lines
836 B
XML
22 lines
836 B
XML
<?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"
|
|
android:onClick="onClickEmptyArea">
|
|
<RelativeLayout
|
|
android:id="@+id/rl_player_container"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:transitionName="player_zoom"/>
|
|
<RelativeLayout
|
|
android:id="@+id/rl_controller_layout"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_alignParentBottom="true"/>
|
|
<ImageButton
|
|
android:id="@+id/ibtn_back"
|
|
android:background="@drawable/ic_back"
|
|
android:layout_width="80dp"
|
|
android:layout_height="80dp"/>
|
|
</RelativeLayout>
|