Created
July 29, 2021 16:08
-
-
Save bikashthapa01/5abf079b383cb13e55aa66a756ad6425 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="utf-8"?> | |
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" | |
xmlns:tools="http://schemas.android.com/tools" | |
android:layout_width="match_parent" | |
android:layout_height="wrap_content" | |
android:layout_gravity="bottom" | |
android:layoutDirection="ltr" | |
android:background="#CC000000" | |
android:orientation="vertical" | |
tools:targetApi="28"> | |
<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_rew" | |
style="@style/ExoMediaButton.Rewind"/> | |
<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> | |
<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:textSize="14sp" | |
android:textStyle="bold" | |
android:paddingLeft="4dp" | |
android:paddingRight="4dp" | |
android:includeFontPadding="false" | |
android:textColor="#FFBEBEBE"/> | |
<View android:id="@id/exo_progress_placeholder" | |
android:layout_width="0dp" | |
android:layout_weight="1" | |
android:layout_height="26dp"/> | |
<TextView android:id="@id/exo_duration" | |
android:layout_width="wrap_content" | |
android:layout_height="wrap_content" | |
android:textSize="14sp" | |
android:textStyle="bold" | |
android:paddingLeft="4dp" | |
android:paddingRight="4dp" | |
android:includeFontPadding="false" | |
android:textColor="#FFBEBEBE"/> | |
<FrameLayout | |
android:id="@+id/exo_fullscreen_button" | |
android:layout_width="32dp" | |
android:layout_height="32dp" | |
android:layout_gravity="right"> | |
<ImageView | |
android:id="@+id/exo_fullscreen_icon" | |
android:layout_width="24dp" | |
android:layout_height="24dp" | |
android:layout_gravity="center" | |
android:adjustViewBounds="true" | |
android:scaleType="fitCenter" | |
android:src="@drawable/exo_controls_fullscreen_enter"/> | |
</FrameLayout> | |
</LinearLayout> | |
</LinearLayout> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment