36 lines
1.4 KiB
XML
36 lines
1.4 KiB
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">
|
|
<RelativeLayout
|
|
android:id="@+id/rl_player_container"
|
|
android:background="#000000"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"/>
|
|
<ImageView
|
|
android:id="@+id/im_cover"
|
|
android:visibility="gone"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:scaleType="fitCenter"
|
|
android:layout_centerInParent="true"/>
|
|
<RelativeLayout
|
|
android:id="@+id/rl_normalscreen_controller"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_alignParentBottom="true">
|
|
<com.ubt.jimu.widgets.player.bar.SimpleMediaController
|
|
android:orientation="vertical"
|
|
android:id="@+id/media_controller_bar"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"/>
|
|
</RelativeLayout>
|
|
<ImageView
|
|
android:id="@+id/playButton"
|
|
android:background="@drawable/icon_play"
|
|
android:visibility="gone"
|
|
android:layout_width="@dimen/dp80"
|
|
android:layout_height="@dimen/dp80"
|
|
android:layout_centerInParent="true"/>
|
|
</RelativeLayout>
|