RetroMusicPlayer/app/src/main/res/layout/fragment_player_playback_controls.xml

194 lines
8.5 KiB
XML
Raw Normal View History

2018-07-27 18:37:33 +05:30
<?xml version="1.0" encoding="utf-8"?>
2019-08-01 19:43:00 +05:30
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
2018-07-27 18:37:33 +05:30
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="center_vertical"
android:orientation="vertical"
tools:ignore="MissingPrefix">
2020-01-10 02:23:18 +05:30
<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:minWidth="40dp"
android:singleLine="true"
android:textColor="?android:attr/textColorSecondary"
app:layout_constraintBottom_toBottomOf="@+id/progressSlider"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="@id/progressSlider"
tools:ignore="RtlHardcoded,RtlSymmetry"
tools:text="@tools:sample/date/hhmmss" />
2019-04-04 11:37:55 +05:30
2020-05-21 03:00:13 +05:30
<androidx.appcompat.widget.AppCompatSeekBar
2020-01-10 02:23:18 +05:30
android:id="@+id/progressSlider"
android:layout_width="0dp"
android:layout_height="wrap_content"
2020-06-09 23:34:22 +05:30
android:maxHeight="2dp"
android:progressDrawable="@drawable/color_progress_seek"
2020-01-10 02:23:18 +05:30
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-12-30 10:23:51 +05:30
2020-01-10 02:23:18 +05:30
<com.google.android.material.textview.MaterialTextView
android:id="@+id/songTotalTime"
android:layout_width="wrap_content"
2020-01-10 02:23:18 +05:30
android:layout_height="wrap_content"
android:layout_marginEnd="16dp"
2020-01-17 22:49:06 +05:30
android:gravity="end"
2020-01-10 02:23:18 +05:30
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="parent"
tools:ignore="RtlHardcoded,RtlSymmetry"
tools:text="@tools:sample/date/hhmmss" />
2019-04-04 11:37:55 +05:30
2021-09-16 18:29:31 +05:30
<com.google.android.material.textview.MaterialTextView
android:id="@+id/title"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:ellipsize="marquee"
android:focusable="true"
android:freezesText="true"
android:gravity="center"
android:marqueeRepeatLimit="marquee_forever"
android:paddingHorizontal="16dp"
android:scrollHorizontally="true"
android:singleLine="true"
android:textAppearance="@style/TextViewHeadline6"
android:textColor="?android:attr/textColorPrimary"
android:textStyle="bold"
app:layout_constraintBottom_toTopOf="@+id/text"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/progressSlider"
tools:text="@tools:sample/lorem/random" />
2019-10-29 11:36:08 +05:30
2019-10-02 22:04:39 +05:30
<com.google.android.material.textview.MaterialTextView
android:id="@+id/text"
android:layout_width="wrap_content"
2019-10-02 22:04:39 +05:30
android:layout_height="wrap_content"
2020-08-13 23:18:49 +05:30
android:ellipsize="marquee"
android:focusable="true"
android:freezesText="true"
android:gravity="center"
android:marqueeRepeatLimit="marquee_forever"
2020-05-09 14:48:29 +05:30
android:paddingHorizontal="16dp"
android:paddingVertical="8dp"
2020-08-13 23:18:49 +05:30
android:scrollHorizontally="true"
android:singleLine="true"
2019-10-02 22:04:39 +05:30
android:textAppearance="@style/TextViewBody1"
android:textColor="?android:attr/textColorSecondary"
2020-01-07 18:44:33 +05:30
app:layout_constrainedWidth="true"
2020-01-06 08:42:32 +05:30
app:layout_constraintBottom_toTopOf="@+id/songInfo"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/title"
tools:text="@tools:sample/full_names" />
2020-01-06 08:42:32 +05:30
<com.google.android.material.textview.MaterialTextView
android:id="@+id/songInfo"
android:layout_width="wrap_content"
2020-01-06 08:42:32 +05:30
android:layout_height="wrap_content"
android:ellipsize="end"
android:maxLines="2"
2020-05-09 14:48:29 +05:30
android:paddingHorizontal="16dp"
2020-05-21 03:00:13 +05:30
android:paddingBottom="8dp"
2020-01-06 08:42:32 +05:30
android:textColor="?android:attr/textColorSecondary"
android:textSize="12sp"
app:layout_constraintBottom_toTopOf="@+id/playPauseButton"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
2020-01-06 08:42:32 +05:30
app:layout_constraintTop_toBottomOf="@+id/text"
tools:text="@tools:sample/full_names" />
2020-01-06 08:42:32 +05:30
2020-01-04 00:10:57 +05:30
<androidx.appcompat.widget.AppCompatImageButton
android:id="@+id/repeatButton"
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/previousButton"
app:layout_constraintEnd_toStartOf="@+id/previousButton"
app:layout_constraintHorizontal_bias="0.5"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="@+id/previousButton"
2020-07-20 02:30:30 +05:30
app:srcCompat="@drawable/ic_repeat"
2020-01-04 00:10:57 +05:30
tools:ignore="MissingPrefix"
tools:tint="@color/md_black_1000" />
2020-01-04 00:10:57 +05:30
<androidx.appcompat.widget.AppCompatImageButton
android:id="@+id/previousButton"
android:layout_width="wrap_content"
2019-08-01 19:43:00 +05:30
android:layout_height="wrap_content"
2020-01-04 00:10:57 +05:30
android:background="?attr/roundSelector"
android:padding="16dp"
android:scaleType="fitCenter"
app:layout_constraintBottom_toBottomOf="@+id/playPauseButton"
app:layout_constraintEnd_toStartOf="@+id/playPauseButton"
app:layout_constraintStart_toEndOf="@+id/repeatButton"
app:layout_constraintTop_toTopOf="@+id/playPauseButton"
2020-07-20 02:30:30 +05:30
app:srcCompat="@drawable/ic_skip_previous"
2020-01-04 00:10:57 +05:30
tools:ignore="MissingPrefix"
tools:tint="@color/md_black_1000" />
<com.google.android.material.floatingactionbutton.FloatingActionButton
android:id="@+id/playPauseButton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="?attr/roundSelector"
2019-08-01 19:43:00 +05:30
app:layout_constraintBottom_toTopOf="@+id/volumeFragmentContainer"
2020-01-04 00:10:57 +05:30
app:layout_constraintEnd_toStartOf="@+id/nextButton"
2019-08-01 19:43:00 +05:30
app:layout_constraintHorizontal_bias="0.5"
2020-01-04 00:10:57 +05:30
app:layout_constraintStart_toEndOf="@+id/previousButton"
2020-01-06 08:42:32 +05:30
app:layout_constraintTop_toBottomOf="@+id/songInfo"
2020-07-20 02:30:30 +05:30
app:srcCompat="@drawable/ic_pause"
2020-01-04 00:10:57 +05:30
tools:tint="@color/md_black_1000" />
2019-08-01 19:43:00 +05:30
2020-01-04 00:10:57 +05:30
<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_constraintStart_toEndOf="@+id/playPauseButton"
app:layout_constraintTop_toTopOf="@+id/playPauseButton"
2020-07-20 02:30:30 +05:30
app:srcCompat="@drawable/ic_skip_next"
2020-01-04 00:10:57 +05:30
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"
2020-07-20 02:30:30 +05:30
app:srcCompat="@drawable/ic_shuffle"
2020-01-04 00:10:57 +05:30
tools:ignore="MissingPrefix"
tools:tint="@color/md_black_1000" />
2018-07-27 18:37:33 +05:30
2019-04-04 11:37:55 +05:30
<FrameLayout
android:id="@+id/volumeFragmentContainer"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="0"
2019-08-01 19:43:00 +05:30
app:layout_constraintBottom_toBottomOf="parent"
2019-12-05 23:48:54 +05:30
tools:background="@color/md_red_400"
2019-08-01 19:43:00 +05:30
tools:layout_height="52dp" />
</androidx.constraintlayout.widget.ConstraintLayout>