2018-07-27 13:07:33 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2019-08-01 14:13:00 +00:00
|
|
|
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2018-07-27 13:07:33 +00:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
android:id="@+id/playback_controls"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:gravity="center_vertical"
|
|
|
|
android:orientation="vertical"
|
|
|
|
tools:ignore="MissingPrefix">
|
|
|
|
|
2019-02-26 16:48:11 +00:00
|
|
|
<RelativeLayout
|
2019-08-01 14:13:00 +00:00
|
|
|
android:id="@+id/progressContainer"
|
2018-07-27 13:07:33 +00:00
|
|
|
android:layout_width="match_parent"
|
2019-03-03 09:20:15 +00:00
|
|
|
android:layout_height="@dimen/progress_slider_height"
|
2019-02-26 16:48:11 +00:00
|
|
|
android:paddingStart="12dp"
|
2019-08-01 14:13:00 +00:00
|
|
|
android:paddingEnd="12dp"
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
2020-01-03 18:40:57 +00:00
|
|
|
app:layout_constraintHorizontal_bias="0.5"
|
2019-08-01 14:13:00 +00:00
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
app:layout_constraintTop_toTopOf="parent">
|
2019-02-26 16:48:11 +00:00
|
|
|
|
2019-09-29 18:58:10 +00:00
|
|
|
<com.google.android.material.textview.MaterialTextView
|
2019-02-26 16:48:11 +00:00
|
|
|
android:id="@+id/songCurrentProgress"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:layout_alignParentLeft="true"
|
|
|
|
android:gravity="center_vertical|left|end"
|
|
|
|
android:paddingLeft="8dp"
|
|
|
|
android:singleLine="true"
|
2019-12-05 18:18:54 +00:00
|
|
|
android:textColor="?android:attr/textColorSecondary"
|
2019-02-26 16:48:11 +00:00
|
|
|
android:textSize="12sp"
|
2019-09-29 18:58:10 +00:00
|
|
|
tools:ignore="RtlHardcoded,RtlSymmetry"
|
|
|
|
tools:text="00:22" />
|
2019-02-26 16:48:11 +00:00
|
|
|
|
2019-09-29 18:58:10 +00:00
|
|
|
<com.google.android.material.textview.MaterialTextView
|
2019-02-26 16:48:11 +00:00
|
|
|
android:id="@+id/songTotalTime"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:layout_alignParentRight="true"
|
|
|
|
android:gravity="center_vertical|right|end"
|
|
|
|
android:paddingRight="8dp"
|
|
|
|
android:singleLine="true"
|
2019-12-05 18:18:54 +00:00
|
|
|
android:textColor="?android:attr/textColorSecondary"
|
2019-02-26 16:48:11 +00:00
|
|
|
android:textSize="12sp"
|
2019-09-29 18:58:10 +00:00
|
|
|
tools:ignore="RtlHardcoded,RtlSymmetry"
|
|
|
|
tools:text="00:22" />
|
2018-07-27 13:07:33 +00:00
|
|
|
|
2019-07-27 05:05:52 +00:00
|
|
|
<androidx.appcompat.widget.AppCompatSeekBar
|
2019-02-26 16:48:11 +00:00
|
|
|
android:id="@+id/progressSlider"
|
2019-07-23 18:32:41 +00:00
|
|
|
style="@style/Widget.MaterialProgressBar.ProgressBar.Horizontal"
|
2019-02-26 16:48:11 +00:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2019-02-27 02:55:38 +00:00
|
|
|
android:layout_centerVertical="true"
|
2019-02-26 16:48:11 +00:00
|
|
|
android:layout_toLeftOf="@id/songTotalTime"
|
|
|
|
android:layout_toRightOf="@id/songCurrentProgress"
|
|
|
|
android:maxHeight="3dp"
|
2019-07-27 05:05:52 +00:00
|
|
|
android:progressDrawable="@drawable/color_progress_seek"
|
2019-02-26 16:48:11 +00:00
|
|
|
android:splitTrack="false"
|
|
|
|
tools:ignore="RtlHardcoded,UnusedAttribute"
|
|
|
|
tools:progress="20" />
|
|
|
|
</RelativeLayout>
|
2018-07-27 13:07:33 +00:00
|
|
|
|
2019-10-29 06:06:08 +00:00
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/titleContainer"
|
|
|
|
android:layout_width="wrap_content"
|
2018-07-27 13:07:33 +00:00
|
|
|
android:layout_height="wrap_content"
|
2019-10-02 16:34:39 +00:00
|
|
|
app:layout_constraintBottom_toTopOf="@+id/text"
|
2019-08-01 14:13:00 +00:00
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
app:layout_constraintHorizontal_bias="0.5"
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
2019-10-29 06:06:08 +00:00
|
|
|
app:layout_constraintTop_toBottomOf="@+id/progressContainer">
|
|
|
|
|
|
|
|
<com.google.android.material.textview.MaterialTextView
|
|
|
|
android:id="@+id/title"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center"
|
|
|
|
android:ellipsize="marquee"
|
|
|
|
android:focusable="true"
|
|
|
|
android:focusableInTouchMode="true"
|
|
|
|
android:freezesText="true"
|
|
|
|
android:gravity="center"
|
|
|
|
android:marqueeRepeatLimit="marquee_forever"
|
|
|
|
android:paddingStart="16dp"
|
|
|
|
android:paddingEnd="16dp"
|
|
|
|
android:scrollHorizontally="true"
|
|
|
|
android:singleLine="true"
|
|
|
|
android:textAppearance="@style/TextViewHeadline6"
|
|
|
|
android:textColor="?android:attr/textColorPrimary"
|
|
|
|
android:textStyle="bold"
|
|
|
|
tools:text="@tools:sample/lorem/random" />
|
|
|
|
</LinearLayout>
|
2018-07-27 13:07:33 +00:00
|
|
|
|
2019-10-02 16:34:39 +00:00
|
|
|
<com.google.android.material.textview.MaterialTextView
|
|
|
|
android:id="@+id/text"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center"
|
|
|
|
android:ellipsize="end"
|
|
|
|
android:gravity="center"
|
2019-12-30 05:12:22 +00:00
|
|
|
android:maxLines="2"
|
2019-12-05 18:18:54 +00:00
|
|
|
android:paddingStart="16dp"
|
2019-11-04 18:43:54 +00:00
|
|
|
android:paddingEnd="16dp"
|
2019-10-04 10:58:28 +00:00
|
|
|
android:textAppearance="@style/TextViewBody1"
|
2020-01-06 03:12:32 +00:00
|
|
|
app:layout_constraintBottom_toTopOf="@+id/songInfo"
|
2019-10-02 16:34:39 +00:00
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
app:layout_constraintHorizontal_bias="0.5"
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
2019-10-29 06:06:08 +00:00
|
|
|
app:layout_constraintTop_toBottomOf="@+id/titleContainer"
|
2019-10-02 16:34:39 +00:00
|
|
|
tools:text="@tools:sample/lorem/random" />
|
2018-07-27 13:07:33 +00:00
|
|
|
|
2020-01-06 03:12:32 +00:00
|
|
|
<com.google.android.material.textview.MaterialTextView
|
|
|
|
android:id="@+id/songInfo"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center"
|
|
|
|
android:ellipsize="end"
|
|
|
|
android:gravity="center"
|
|
|
|
android:maxLines="2"
|
|
|
|
android:paddingStart="16dp"
|
|
|
|
android:paddingEnd="16dp"
|
|
|
|
android:textColor="?android:attr/textColorSecondary"
|
|
|
|
android:textSize="12sp"
|
|
|
|
app:layout_constraintBottom_toTopOf="@+id/playPauseButton"
|
|
|
|
app:layout_constraintTop_toBottomOf="@+id/text"
|
|
|
|
tools:text="@tools:sample/lorem/random" />
|
2020-01-03 18:40:57 +00:00
|
|
|
|
|
|
|
<androidx.appcompat.widget.AppCompatImageButton
|
|
|
|
android:id="@+id/repeatButton"
|
|
|
|
android:layout_width="wrap_content"
|
2019-08-01 14:13:00 +00:00
|
|
|
android:layout_height="wrap_content"
|
2020-01-03 18:40:57 +00:00
|
|
|
android:background="?attr/roundSelector"
|
|
|
|
android:padding="16dp"
|
|
|
|
android:scaleType="fitCenter"
|
|
|
|
app:layout_constraintBottom_toBottomOf="@+id/previousButton"
|
|
|
|
app:layout_constraintEnd_toStartOf="@+id/previousButton"
|
2019-08-01 14:13:00 +00:00
|
|
|
app:layout_constraintHorizontal_bias="0.5"
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
2020-01-03 18:40:57 +00:00
|
|
|
app:layout_constraintTop_toTopOf="@+id/previousButton"
|
|
|
|
app:srcCompat="@drawable/ic_repeat_white_24dp"
|
|
|
|
tools:ignore="MissingPrefix"
|
|
|
|
tools:tint="@color/md_black_1000" />
|
2018-07-27 13:07:33 +00:00
|
|
|
|
2020-01-03 18:40:57 +00:00
|
|
|
<androidx.appcompat.widget.AppCompatImageButton
|
|
|
|
android:id="@+id/previousButton"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:background="?attr/roundSelector"
|
|
|
|
android:padding="16dp"
|
|
|
|
android:scaleType="fitCenter"
|
|
|
|
app:layout_constraintBottom_toBottomOf="@+id/playPauseButton"
|
|
|
|
app:layout_constraintEnd_toStartOf="@+id/playPauseButton"
|
|
|
|
app:layout_constraintHorizontal_bias="0.5"
|
|
|
|
app:layout_constraintStart_toEndOf="@+id/repeatButton"
|
|
|
|
app:layout_constraintTop_toTopOf="@+id/playPauseButton"
|
|
|
|
app:srcCompat="@drawable/ic_skip_previous_white_24dp"
|
|
|
|
tools:ignore="MissingPrefix"
|
|
|
|
tools:tint="@color/md_black_1000" />
|
|
|
|
|
|
|
|
<androidx.appcompat.widget.AppCompatImageButton
|
|
|
|
android:id="@+id/playPauseButton"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:background="?attr/roundSelector"
|
|
|
|
app:layout_constraintBottom_toTopOf="@+id/volumeFragmentContainer"
|
|
|
|
app:layout_constraintEnd_toStartOf="@+id/nextButton"
|
|
|
|
app:layout_constraintHorizontal_bias="0.5"
|
|
|
|
app:layout_constraintStart_toEndOf="@+id/previousButton"
|
2020-01-06 03:12:32 +00:00
|
|
|
app:layout_constraintTop_toBottomOf="@+id/songInfo"
|
2020-01-03 18:40:57 +00:00
|
|
|
app:srcCompat="@drawable/ic_pause_white_64dp"
|
|
|
|
tools:tint="@color/md_black_1000" />
|
2018-07-27 13:07:33 +00:00
|
|
|
|
2020-01-03 18:40:57 +00:00
|
|
|
<androidx.appcompat.widget.AppCompatImageButton
|
|
|
|
android:id="@+id/nextButton"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:background="?attr/roundSelector"
|
|
|
|
android:padding="16dp"
|
|
|
|
android:scaleType="fitCenter"
|
|
|
|
app:layout_constraintBottom_toBottomOf="@+id/playPauseButton"
|
|
|
|
app:layout_constraintEnd_toStartOf="@+id/shuffleButton"
|
|
|
|
app:layout_constraintHorizontal_bias="0.5"
|
|
|
|
app:layout_constraintStart_toEndOf="@+id/playPauseButton"
|
|
|
|
app:layout_constraintTop_toTopOf="@+id/playPauseButton"
|
|
|
|
app:srcCompat="@drawable/ic_skip_next_white_24dp"
|
|
|
|
tools:ignore="MissingPrefix"
|
|
|
|
tools:tint="@color/md_black_1000" />
|
|
|
|
|
|
|
|
<androidx.appcompat.widget.AppCompatImageButton
|
|
|
|
android:id="@+id/shuffleButton"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:background="?attr/roundSelector"
|
|
|
|
android:padding="16dp"
|
|
|
|
android:scaleType="fitCenter"
|
|
|
|
app:layout_constraintBottom_toBottomOf="@+id/nextButton"
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
app:layout_constraintStart_toEndOf="@+id/nextButton"
|
|
|
|
app:layout_constraintTop_toTopOf="@+id/nextButton"
|
|
|
|
app:srcCompat="@drawable/ic_shuffle_white_24dp"
|
|
|
|
tools:ignore="MissingPrefix"
|
|
|
|
tools:tint="@color/md_black_1000" />
|
2018-07-27 13:07:33 +00:00
|
|
|
|
|
|
|
|
2019-08-01 14:13:00 +00:00
|
|
|
<FrameLayout
|
|
|
|
android:id="@+id/volumeFragmentContainer"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_weight="0"
|
|
|
|
android:paddingStart="8dp"
|
|
|
|
android:paddingEnd="8dp"
|
|
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
|
|
tools:backgroundTint="@color/md_red_400"
|
|
|
|
tools:layout_height="52dp" />
|
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|