2019-10-04 10:58:28 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?><!--
|
|
|
|
~ Copyright (c) 2019 Hemanth Savarala.
|
|
|
|
~
|
|
|
|
~ Licensed under the GNU General Public License v3
|
|
|
|
~
|
|
|
|
~ This is free software: you can redistribute it and/or modify it under
|
|
|
|
~ the terms of the GNU General Public License as published by
|
|
|
|
~ the Free Software Foundation either version 3 of the License, or (at your option) any later version.
|
|
|
|
~
|
|
|
|
~ This software is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
|
|
|
|
~ without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
~ See the GNU General Public License for more details.
|
|
|
|
-->
|
|
|
|
|
|
|
|
<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">
|
|
|
|
|
2020-01-09 20:53:18 +00:00
|
|
|
<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"
|
|
|
|
app:layout_constraintBottom_toBottomOf="@+id/progressSlider"
|
2019-10-04 10:58:28 +00:00
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
2020-01-09 20:53:18 +00:00
|
|
|
app:layout_constraintTop_toTopOf="@id/progressSlider"
|
|
|
|
tools:ignore="RtlHardcoded,RtlSymmetry"
|
2020-07-30 14:11:19 +00:00
|
|
|
tools:text="@tools:sample/date/hhmmss" />
|
2019-10-04 10:58:28 +00:00
|
|
|
|
2020-05-20 21:30:13 +00:00
|
|
|
<androidx.appcompat.widget.AppCompatSeekBar
|
2020-01-09 20:53:18 +00:00
|
|
|
android:id="@+id/progressSlider"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginTop="16dp"
|
2020-06-09 18:04:22 +00:00
|
|
|
android:maxHeight="2dp"
|
|
|
|
android:progressDrawable="@drawable/color_progress_seek"
|
2020-01-09 20:53:18 +00:00
|
|
|
app:layout_constraintEnd_toStartOf="@id/songTotalTime"
|
|
|
|
app:layout_constraintStart_toEndOf="@id/songCurrentProgress"
|
|
|
|
app:layout_constraintTop_toTopOf="parent"
|
|
|
|
tools:ignore="RtlHardcoded,UnusedAttribute"
|
|
|
|
tools:progress="20" />
|
2019-10-04 10:58:28 +00:00
|
|
|
|
2020-01-09 20:53:18 +00:00
|
|
|
<com.google.android.material.textview.MaterialTextView
|
|
|
|
android:id="@+id/songTotalTime"
|
2020-06-06 06:33:37 +00:00
|
|
|
android:layout_width="wrap_content"
|
2020-01-09 20:53:18 +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"
|
|
|
|
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" />
|
2019-10-04 10:58:28 +00:00
|
|
|
|
|
|
|
<androidx.appcompat.widget.AppCompatImageButton
|
|
|
|
android:id="@+id/playPauseButton"
|
|
|
|
android:layout_width="72dp"
|
|
|
|
android:layout_height="72dp"
|
2020-05-20 21:30:13 +00:00
|
|
|
android:layout_marginTop="16dp"
|
2019-10-04 10:58:28 +00:00
|
|
|
android:background="?attr/roundSelector"
|
|
|
|
android:padding="8dp"
|
|
|
|
android:scaleType="fitCenter"
|
|
|
|
app:layout_constraintEnd_toStartOf="@+id/nextButton"
|
|
|
|
app:layout_constraintHorizontal_bias="0.5"
|
|
|
|
app:layout_constraintStart_toEndOf="@+id/previousButton"
|
2020-01-09 20:53:18 +00:00
|
|
|
app:layout_constraintTop_toBottomOf="@+id/progressSlider"
|
2020-07-19 21:00:30 +00:00
|
|
|
app:srcCompat="@drawable/ic_pause"
|
2019-10-04 10:58:28 +00:00
|
|
|
tools:tint="@color/md_black_1000" />
|
|
|
|
|
|
|
|
<androidx.appcompat.widget.AppCompatImageButton
|
|
|
|
android:id="@+id/previousButton"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_centerVertical="true"
|
|
|
|
android:background="?attr/roundSelector"
|
|
|
|
android:padding="16dp"
|
|
|
|
android:scaleType="fitCenter"
|
2020-04-15 13:08:42 +00:00
|
|
|
app:layout_constraintBottom_toBottomOf="@+id/playPauseButton"
|
2019-10-04 10:58:28 +00:00
|
|
|
app:layout_constraintEnd_toStartOf="@+id/playPauseButton"
|
|
|
|
app:layout_constraintStart_toEndOf="@+id/repeatButton"
|
2020-04-15 13:08:42 +00:00
|
|
|
app:layout_constraintTop_toTopOf="@+id/playPauseButton"
|
2020-07-19 21:00:30 +00:00
|
|
|
app:srcCompat="@drawable/ic_skip_previous"
|
2019-10-04 10:58:28 +00:00
|
|
|
tools:ignore="MissingPrefix"
|
|
|
|
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:layout_centerVertical="true"
|
|
|
|
android:background="?attr/roundSelector"
|
|
|
|
android:padding="16dp"
|
|
|
|
android:scaleType="fitCenter"
|
|
|
|
app:layout_constraintBottom_toBottomOf="@+id/playPauseButton"
|
|
|
|
app:layout_constraintEnd_toStartOf="@+id/shuffleButton"
|
|
|
|
app:layout_constraintStart_toEndOf="@+id/playPauseButton"
|
2020-04-15 13:08:42 +00:00
|
|
|
app:layout_constraintTop_toTopOf="@+id/playPauseButton"
|
2020-07-19 21:00:30 +00:00
|
|
|
app:srcCompat="@drawable/ic_skip_next"
|
2019-10-04 10:58:28 +00:00
|
|
|
tools:ignore="MissingPrefix"
|
|
|
|
tools:tint="@color/md_black_1000" />
|
|
|
|
|
|
|
|
<androidx.appcompat.widget.AppCompatImageButton
|
|
|
|
android:id="@+id/repeatButton"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_centerVertical="true"
|
2019-10-26 08:11:08 +00:00
|
|
|
android:layout_marginStart="16dp"
|
2019-10-04 10:58:28 +00:00
|
|
|
android:background="?attr/roundSelector"
|
|
|
|
android:padding="16dp"
|
|
|
|
android:scaleType="fitCenter"
|
2020-04-15 13:08:42 +00:00
|
|
|
app:layout_constraintBottom_toBottomOf="@+id/previousButton"
|
|
|
|
app:layout_constraintEnd_toStartOf="@+id/previousButton"
|
|
|
|
app:layout_constraintHorizontal_bias="0.5"
|
2019-10-04 10:58:28 +00:00
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
2020-04-15 13:08:42 +00:00
|
|
|
app:layout_constraintTop_toTopOf="@+id/previousButton"
|
2020-07-19 21:00:30 +00:00
|
|
|
app:srcCompat="@drawable/ic_repeat"
|
2019-10-04 10:58:28 +00:00
|
|
|
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:layout_centerVertical="true"
|
2019-10-26 08:11:08 +00:00
|
|
|
android:layout_marginEnd="16dp"
|
2019-10-04 10:58:28 +00:00
|
|
|
android:background="?attr/roundSelector"
|
|
|
|
android:padding="16dp"
|
|
|
|
android:scaleType="fitCenter"
|
2020-04-15 13:08:42 +00:00
|
|
|
app:layout_constraintBottom_toBottomOf="@+id/nextButton"
|
2019-10-04 10:58:28 +00:00
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
2020-04-15 13:08:42 +00:00
|
|
|
app:layout_constraintStart_toEndOf="@+id/nextButton"
|
|
|
|
app:layout_constraintTop_toTopOf="@+id/nextButton"
|
2020-07-19 21:00:30 +00:00
|
|
|
app:srcCompat="@drawable/ic_shuffle"
|
2019-10-04 10:58:28 +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_weight="0"
|
|
|
|
android:paddingStart="8dp"
|
|
|
|
android:paddingEnd="8dp"
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
app:layout_constraintTop_toBottomOf="@id/playPauseButton"
|
|
|
|
tools:backgroundTint="@color/md_red_400"
|
|
|
|
tools:layout_height="52dp" />
|
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|