2019-01-25 15:54:53 +05:30
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="bottom"
|
|
|
|
android:layoutDirection="ltr"
|
|
|
|
android:background="#CC000000"
|
|
|
|
android:orientation="vertical">
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:gravity="center"
|
|
|
|
android:paddingTop="4dp"
|
|
|
|
android:orientation="horizontal">
|
|
|
|
|
|
|
|
<ImageButton android:id="@id/exo_prev"
|
|
|
|
style="@style/ExoMediaButton.Previous"/>
|
|
|
|
|
|
|
|
<ImageButton android:id="@id/exo_rew"
|
|
|
|
style="@style/ExoMediaButton.Rewind"/>
|
|
|
|
<FrameLayout
|
2019-02-04 19:18:29 +05:30
|
|
|
android:id="@+id/exo_play_pause_container"
|
2019-01-25 15:54:53 +05:30
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center">
|
|
|
|
<ImageButton android:id="@id/exo_play"
|
|
|
|
style="@style/ExoMediaButton.Play"/>
|
|
|
|
|
|
|
|
<ImageButton android:id="@id/exo_pause"
|
|
|
|
style="@style/ExoMediaButton.Pause"/>
|
|
|
|
</FrameLayout>
|
|
|
|
|
|
|
|
<ImageButton android:id="@id/exo_ffwd"
|
|
|
|
style="@style/ExoMediaButton.FastForward"/>
|
|
|
|
|
|
|
|
<ImageButton android:id="@id/exo_next"
|
|
|
|
style="@style/ExoMediaButton.Next"/>
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
<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="50dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:textSize="14sp"
|
|
|
|
android:textStyle="bold"
|
|
|
|
android:paddingLeft="4dp"
|
|
|
|
android:paddingRight="4dp"
|
|
|
|
android:includeFontPadding="false"
|
|
|
|
android:textColor="#FFBEBEBE"/>
|
|
|
|
|
|
|
|
<com.google.android.exoplayer2.ui.DefaultTimeBar
|
|
|
|
android:id="@id/exo_progress"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_weight="1"
|
|
|
|
android:layout_height="26dp"/>
|
|
|
|
|
|
|
|
<TextView android:id="@id/exo_duration"
|
|
|
|
android:layout_width="50dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:textSize="14sp"
|
|
|
|
android:textStyle="bold"
|
|
|
|
android:paddingLeft="4dp"
|
|
|
|
android:paddingRight="4dp"
|
|
|
|
android:includeFontPadding="false"
|
|
|
|
android:textColor="#FFBEBEBE"/>
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
</LinearLayout>
|