119 lines
3.8 KiB
XML
119 lines
3.8 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="bottom"
|
|
android:background="#CC000000"
|
|
android:layoutDirection="ltr"
|
|
android:orientation="vertical"
|
|
tools:targetApi="28">
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="4dp"
|
|
android:gravity="center_vertical"
|
|
android:orientation="horizontal">
|
|
|
|
<TextView
|
|
android:id="@id/exo_position"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:includeFontPadding="false"
|
|
android:paddingLeft="4dp"
|
|
android:paddingRight="4dp"
|
|
android:textColor="#FFBEBEBE"
|
|
android:textSize="14sp"
|
|
android:textStyle="bold" />
|
|
|
|
<View
|
|
android:id="@id/exo_progress_placeholder"
|
|
android:layout_width="0dp"
|
|
android:layout_height="26dp"
|
|
android:layout_weight="1" />
|
|
|
|
<TextView
|
|
android:id="@id/exo_duration"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:includeFontPadding="false"
|
|
android:paddingLeft="4dp"
|
|
android:paddingRight="4dp"
|
|
android:textColor="#FFBEBEBE"
|
|
android:textSize="14sp"
|
|
android:textStyle="bold" />
|
|
|
|
</LinearLayout>
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:gravity="center"
|
|
android:orientation="horizontal"
|
|
android:paddingTop="4dp">
|
|
|
|
<ImageButton
|
|
android:id="@+id/exo_share"
|
|
android:layout_width="@dimen/exo_media_button_width"
|
|
android:layout_height="@dimen/exo_media_button_height"
|
|
android:background="?selectableItemBackground"
|
|
app:srcCompat="@drawable/ic_share_24_outline_white" />
|
|
|
|
<Space
|
|
android:layout_width="0dp"
|
|
android:layout_height="0dp"
|
|
android:layout_weight="1.0" />
|
|
|
|
<ImageButton
|
|
android:id="@id/exo_prev"
|
|
style="@style/ExoMediaButton.Previous" />
|
|
|
|
<ImageButton
|
|
android:id="@id/exo_rew"
|
|
style="@style/ExoMediaButton.Rewind" />
|
|
|
|
<ImageButton
|
|
android:id="@id/exo_shuffle"
|
|
style="@style/ExoMediaButton" />
|
|
|
|
<ImageButton
|
|
android:id="@id/exo_repeat_toggle"
|
|
style="@style/ExoMediaButton" />
|
|
|
|
<ImageButton
|
|
android:id="@id/exo_play"
|
|
style="@style/ExoMediaButton.Play" />
|
|
|
|
<ImageButton
|
|
android:id="@id/exo_pause"
|
|
style="@style/ExoMediaButton.Pause" />
|
|
|
|
<ImageButton
|
|
android:id="@id/exo_ffwd"
|
|
style="@style/ExoMediaButton.FastForward" />
|
|
|
|
<ImageButton
|
|
android:id="@id/exo_next"
|
|
style="@style/ExoMediaButton.Next" />
|
|
|
|
<ImageButton
|
|
android:id="@id/exo_vr"
|
|
style="@style/ExoMediaButton.VR" />
|
|
|
|
<Space
|
|
android:layout_width="0dp"
|
|
android:layout_height="0dp"
|
|
android:layout_weight="1.0" />
|
|
|
|
<ImageButton
|
|
android:id="@+id/exo_forward"
|
|
android:layout_width="@dimen/exo_media_button_width"
|
|
android:layout_height="@dimen/exo_media_button_height"
|
|
android:background="?selectableItemBackground"
|
|
app:srcCompat="@drawable/ic_forward_24" />
|
|
</LinearLayout>
|
|
|
|
|
|
</LinearLayout>
|