165 lines
4.9 KiB
XML
165 lines
4.9 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:layout_gravity="center"
|
|
android:background="#CC000000"
|
|
android:layoutDirection="ltr"
|
|
android:orientation="vertical"
|
|
tools:targetApi="28">
|
|
|
|
<FrameLayout
|
|
android:id="@+id/exo_more_button"
|
|
android:layout_width="32dp"
|
|
android:layout_height="32dp"
|
|
android:layout_gravity="end">
|
|
|
|
<TextView
|
|
android:id="@+id/exo_more"
|
|
android:layout_width="18dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="end"
|
|
android:paddingTop="12dp"
|
|
android:adjustViewBounds="true"
|
|
android:scaleType="fitCenter"
|
|
android:textColor="#FFBEBEBE"
|
|
android:textSize="12sp" />
|
|
|
|
</FrameLayout>
|
|
|
|
|
|
|
|
<Space
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="0dp"
|
|
android:layout_weight="1"
|
|
/>
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:gravity="center"
|
|
android:orientation="horizontal"
|
|
android:paddingTop="8dp">
|
|
|
|
<ImageButton
|
|
android:id="@id/exo_rew"
|
|
style="@style/ExoMediaButton.Rewind" />
|
|
|
|
<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" />
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
<Space
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="0dp"
|
|
android:layout_weight="1"
|
|
/>
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="4dp"
|
|
android:gravity="bottom"
|
|
android:orientation="horizontal">
|
|
|
|
<TextView
|
|
android:id="@id/exo_position"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:includeFontPadding="false"
|
|
android:layout_gravity="center"
|
|
android:paddingLeft="12dp"
|
|
android:paddingRight="12dp"
|
|
android:textColor="#FFBEBEBE"
|
|
android:textSize="14sp" />
|
|
|
|
<View
|
|
android:layout_width="0dp"
|
|
android:layout_height="0dp"
|
|
android:layout_weight="1" />
|
|
|
|
<TextView
|
|
android:id="@id/exo_duration"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:includeFontPadding="false"
|
|
android:layout_gravity="center"
|
|
android:paddingLeft="6dp"
|
|
android:paddingRight="6dp"
|
|
android:textColor="#FFBEBEBE"
|
|
android:textSize="14sp" />
|
|
|
|
|
|
|
|
<FrameLayout
|
|
android:id="@+id/exo_fullscreen_button"
|
|
android:layout_width="48dp"
|
|
android:layout_height="48dp"
|
|
android:layout_gravity="end">
|
|
|
|
<TextView
|
|
android:id="@+id/exo_fullscreen"
|
|
android:layout_width="18dp"
|
|
android:layout_height="18dp"
|
|
android:layout_gravity="center"
|
|
android:adjustViewBounds="true"
|
|
android:scaleType="fitCenter"
|
|
android:textColor="#FFBEBEBE"
|
|
android:textSize="12sp" />
|
|
|
|
</FrameLayout>
|
|
|
|
</LinearLayout>
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="-12dp"
|
|
android:gravity="bottom"
|
|
android:orientation="horizontal">
|
|
|
|
|
|
<com.google.android.exoplayer2.ui.DefaultTimeBar
|
|
android:id="@id/exo_progress"
|
|
android:layout_width="0dp"
|
|
android:layout_height="26dp"
|
|
android:layout_weight="1"
|
|
app:played_color="?attr/colorPrimary" />
|
|
|
|
</LinearLayout>
|
|
|
|
<LinearLayout
|
|
android:visibility="gone"
|
|
android:id="@+id/exo_torrent_status"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content">
|
|
|
|
<ProgressBar
|
|
android:id="@+id/torrent_progress"
|
|
style="?android:attr/progressBarStyleHorizontal"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:indeterminate="false"
|
|
android:max="100" />
|
|
|
|
</LinearLayout>
|
|
|
|
</LinearLayout> |