2020-05-17 19:58:04 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<androidx.constraintlayout.widget.ConstraintLayout 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:orientation="vertical">
|
|
|
|
|
|
|
|
<androidx.appcompat.widget.AppCompatImageView
|
|
|
|
android:id="@+id/playerMenu"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:background="?attr/roundSelector"
|
|
|
|
android:padding="16dp"
|
|
|
|
app:layout_constraintBottom_toBottomOf="@+id/titleContainer"
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
app:layout_constraintTop_toTopOf="@id/titleContainer"
|
2020-07-19 21:00:30 +00:00
|
|
|
app:srcCompat="@drawable/ic_more_vert"
|
2020-05-17 19:58:04 +00:00
|
|
|
tools:tint="@color/md_black_1000" />
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/titleContainer"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
2021-09-16 12:59:31 +00:00
|
|
|
android:clickable="false"
|
2020-05-17 19:58:04 +00:00
|
|
|
android:orientation="vertical"
|
|
|
|
app:layout_constraintBottom_toTopOf="@+id/progressSlider"
|
|
|
|
app:layout_constraintEnd_toStartOf="@+id/playerMenu"
|
|
|
|
app:layout_constraintStart_toEndOf="@+id/songFavourite"
|
|
|
|
app:layout_constraintTop_toTopOf="parent">
|
|
|
|
|
|
|
|
<com.google.android.material.textview.MaterialTextView
|
|
|
|
android:id="@+id/title"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2021-09-16 12:59:31 +00:00
|
|
|
android:clickable="true"
|
2020-05-17 19:58:04 +00:00
|
|
|
android:ellipsize="marquee"
|
2021-09-16 12:59:31 +00:00
|
|
|
android:focusable="true"
|
2020-05-17 19:58:04 +00:00
|
|
|
android:gravity="center"
|
|
|
|
android:marqueeRepeatLimit="marquee_forever"
|
|
|
|
android:singleLine="true"
|
|
|
|
android:textAppearance="@style/TextViewHeadline6"
|
|
|
|
android:textColor="@color/md_white_1000"
|
|
|
|
android:textStyle="bold"
|
|
|
|
tools:text="@tools:sample/lorem/random"
|
|
|
|
tools:textColor="@color/md_black_1000" />
|
|
|
|
|
|
|
|
<com.google.android.material.textview.MaterialTextView
|
|
|
|
android:id="@+id/text"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:alpha="0.75"
|
2021-09-16 12:59:31 +00:00
|
|
|
android:clickable="true"
|
2020-05-17 19:58:04 +00:00
|
|
|
android:ellipsize="end"
|
2021-09-16 12:59:31 +00:00
|
|
|
android:focusable="true"
|
2020-05-17 19:58:04 +00:00
|
|
|
android:gravity="center"
|
|
|
|
android:maxLines="1"
|
|
|
|
android:paddingTop="6dp"
|
|
|
|
android:textColor="@color/md_white_1000"
|
|
|
|
app:layout_constraintBottom_toTopOf="@+id/progressSlider"
|
|
|
|
app:layout_constraintEnd_toStartOf="@+id/playerMenu"
|
|
|
|
app:layout_constraintStart_toEndOf="@+id/songFavourite"
|
|
|
|
app:layout_constraintTop_toBottomOf="@+id/title"
|
|
|
|
tools:layout_editor_absoluteX="48dp"
|
|
|
|
tools:text="@tools:sample/lorem/random"
|
|
|
|
tools:textColor="@color/md_black_1000" />
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
<androidx.appcompat.widget.AppCompatImageView
|
|
|
|
android:id="@+id/songFavourite"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:background="?attr/roundSelector"
|
|
|
|
android:padding="16dp"
|
|
|
|
app:layout_constraintBottom_toBottomOf="@+id/titleContainer"
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
app:layout_constraintTop_toTopOf="@+id/titleContainer"
|
2020-07-19 21:00:30 +00:00
|
|
|
app:srcCompat="@drawable/ic_favorite_border"
|
2020-05-17 19:58:04 +00:00
|
|
|
tools:tint="@color/md_black_1000" />
|
|
|
|
|
|
|
|
|
|
|
|
<com.google.android.material.textview.MaterialTextView
|
|
|
|
android:id="@+id/songCurrentProgress"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginStart="16dp"
|
|
|
|
android:gravity="center"
|
|
|
|
android:minWidth="40dp"
|
|
|
|
android:singleLine="true"
|
|
|
|
android:textColor="?android:attr/textColorSecondary"
|
|
|
|
android:textSize="12sp"
|
|
|
|
app:layout_constraintBottom_toBottomOf="@+id/progressSlider"
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
app:layout_constraintTop_toTopOf="@id/progressSlider"
|
|
|
|
tools:ignore="RtlHardcoded,RtlSymmetry"
|
2020-07-30 14:11:19 +00:00
|
|
|
tools:text="@tools:sample/date/hhmmss" />
|
2020-05-17 19:58:04 +00:00
|
|
|
|
2020-05-20 21:30:13 +00:00
|
|
|
<androidx.appcompat.widget.AppCompatSeekBar
|
2020-05-17 19:58:04 +00:00
|
|
|
android:id="@+id/progressSlider"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginTop="16dp"
|
|
|
|
app:layout_constraintEnd_toStartOf="@id/songTotalTime"
|
|
|
|
app:layout_constraintStart_toEndOf="@id/songCurrentProgress"
|
|
|
|
app:layout_constraintTop_toBottomOf="@id/titleContainer"
|
|
|
|
tools:ignore="RtlHardcoded,UnusedAttribute"
|
|
|
|
tools:progress="20" />
|
|
|
|
|
|
|
|
<com.google.android.material.textview.MaterialTextView
|
|
|
|
android:id="@+id/songTotalTime"
|
2020-06-06 06:33:37 +00:00
|
|
|
android:layout_width="wrap_content"
|
2020-05-17 19:58:04 +00:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginEnd="16dp"
|
|
|
|
android:gravity="center"
|
|
|
|
android:minWidth="40dp"
|
|
|
|
android:singleLine="true"
|
|
|
|
android:textColor="?android:attr/textColorSecondary"
|
|
|
|
android:textSize="12sp"
|
|
|
|
app:layout_constraintBottom_toBottomOf="@+id/progressSlider"
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
app:layout_constraintTop_toTopOf="@id/progressSlider"
|
|
|
|
tools:ignore="RtlHardcoded,RtlSymmetry"
|
2020-07-30 14:11:19 +00:00
|
|
|
tools:text="@tools:sample/date/hhmmss" />
|
2020-05-17 19:58:04 +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_constraintTop_toTopOf="@+id/playPauseButton"
|
2020-07-19 21:00:30 +00:00
|
|
|
app:srcCompat="@drawable/ic_skip_previous"
|
2020-05-17 19:58:04 +00:00
|
|
|
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"
|
2020-05-20 21:30:13 +00:00
|
|
|
android:layout_marginTop="16dp"
|
2020-05-17 19:58:04 +00:00
|
|
|
android:background="?attr/roundSelector"
|
|
|
|
app:layout_constraintBottom_toTopOf="@+id/volumeFragmentContainer"
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
app:layout_constraintTop_toBottomOf="@+id/progressSlider"
|
|
|
|
app:srcCompat="@drawable/ic_pause_sharp_white_64dp"
|
|
|
|
tools:tint="@color/md_black_1000" />
|
|
|
|
|
|
|
|
<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_constraintStart_toEndOf="@+id/playPauseButton"
|
|
|
|
app:layout_constraintTop_toTopOf="@+id/playPauseButton"
|
2020-07-19 21:00:30 +00:00
|
|
|
app:srcCompat="@drawable/ic_skip_next"
|
2020-05-17 19:58:04 +00:00
|
|
|
tools:ignore="MissingPrefix"
|
|
|
|
tools:tint="@color/md_black_1000" />
|
|
|
|
|
|
|
|
<FrameLayout
|
|
|
|
android:id="@+id/volumeFragmentContainer"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginBottom="8dp"
|
|
|
|
app:layout_constraintBottom_toTopOf="@id/songInfo"
|
|
|
|
app:layout_constraintTop_toBottomOf="@+id/playPauseButton"
|
|
|
|
tools:background="@color/md_red_400"
|
|
|
|
tools:layout_height="52dp" />
|
|
|
|
|
|
|
|
<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="1"
|
|
|
|
android:paddingStart="16dp"
|
|
|
|
android:paddingEnd="16dp"
|
|
|
|
android:paddingBottom="16dp"
|
|
|
|
android:textColor="@color/md_white_1000"
|
|
|
|
android:textSize="12sp"
|
|
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
tools:text="@tools:sample/lorem/random"
|
|
|
|
tools:textColor="@color/md_black_1000" />
|
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|