PlayerAndroid/app/src/main/res/layout/fragment_simple_controls_fr...

163 lines
7.1 KiB
XML
Raw Normal View History

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"
xmlns:app="http://schemas.android.com/apk/res-auto"
2018-07-27 13:07:33 +00:00
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<com.google.android.material.textview.MaterialTextView
android:id="@+id/title"
2019-10-29 06:06:08 +00:00
android:layout_width="wrap_content"
2019-10-02 16:34:39 +00:00
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"
2021-09-16 12:59:31 +00:00
android:paddingHorizontal="16dp"
android:scrollHorizontally="true"
android:singleLine="true"
android:textAppearance="@style/TextViewHeadline6"
android:textStyle="bold"
2021-09-16 12:59:31 +00:00
app:layout_constraintBottom_toTopOf="@+id/text"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
tools:text="@tools:sample/lorem/random" />
2019-08-01 14:13:00 +00:00
2019-10-02 16:34:39 +00:00
<com.google.android.material.textview.MaterialTextView
android:id="@+id/text"
2020-05-21 16:00:39 +00:00
android:layout_width="0dp"
2019-10-02 16:34:39 +00:00
android:layout_height="wrap_content"
android:layout_gravity="center"
android:ellipsize="end"
android:gravity="center"
2020-01-17 17:44:59 +00:00
android:maxLines="1"
2020-05-21 16:00:39 +00:00
android:paddingHorizontal="16dp"
android:textAppearance="@style/TextViewSubtitle1"
2019-10-02 16:34:39 +00:00
app:layout_constraintBottom_toTopOf="@+id/songCurrentProgress"
2020-05-21 16:00:39 +00:00
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/title"
2019-10-02 16:34:39 +00:00
tools:text="@tools:sample/lorem/random" />
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/songCurrentProgress"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center"
2020-05-21 16:00:39 +00:00
android:paddingHorizontal="16dp"
2019-10-02 16:34:39 +00:00
android:textAppearance="@style/TextViewSubtitle2"
2020-01-06 03:12:32 +00:00
app:layout_constraintBottom_toTopOf="@+id/songInfo"
2020-05-21 16:00:39 +00:00
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
2019-10-02 16:34:39 +00:00
app:layout_constraintTop_toBottomOf="@+id/text"
tools:text="22.00/ 33.00" />
2019-09-29 18:58:10 +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"
2020-01-17 17:44:59 +00:00
android:maxLines="1"
2020-01-06 03:12:32 +00:00
android:paddingStart="16dp"
android:paddingEnd="16dp"
android:textColor="?android:attr/textColorSecondary"
android:textSize="12sp"
2020-05-21 16:00:39 +00:00
app:layout_constraintBottom_toTopOf="@+id/playPauseButton"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
2020-01-06 03:12:32 +00:00
app:layout_constraintTop_toBottomOf="@+id/songCurrentProgress"
tools:text="@tools:sample/lorem/random" />
2019-08-01 14:13:00 +00:00
2020-05-21 16:00:39 +00:00
<androidx.appcompat.widget.AppCompatImageButton
android:id="@+id/repeatButton"
android:layout_width="wrap_content"
2019-10-02 16:34:39 +00:00
android:layout_height="wrap_content"
2020-05-21 16:00:39 +00:00
android:background="?attr/roundSelector"
android:padding="16dp"
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-19 21:00:30 +00:00
app:srcCompat="@drawable/ic_repeat"
2020-05-21 16:00:39 +00:00
tools:ignore="MissingPrefix"
tools:tint="@color/md_black_1000" />
2018-07-27 13:07:33 +00:00
2020-05-21 16:00:39 +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"
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"
2020-07-19 21:00:30 +00:00
app:srcCompat="@drawable/ic_skip_previous"
2020-05-21 16:00:39 +00:00
tools:ignore="MissingPrefix"
tools:tint="@color/md_black_1000" />
2018-07-27 13:07:33 +00:00
2020-05-21 16:00:39 +00:00
<com.google.android.material.floatingactionbutton.FloatingActionButton
android:id="@+id/playPauseButton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:padding="16dp"
app:layout_constraintBottom_toTopOf="@+id/volumeFragmentContainer"
app:layout_constraintEnd_toStartOf="@+id/nextButton"
app:layout_constraintHorizontal_bias="0.5"
app:layout_constraintStart_toEndOf="@+id/previousButton"
app:layout_constraintTop_toBottomOf="@+id/songInfo"
tools:backgroundTint="@color/md_green_500"
tools:srcCompat="@drawable/ic_play_arrow_white_32dp" />
2018-07-27 13:07:33 +00:00
2020-05-21 16:00:39 +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"
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"
2020-07-19 21:00:30 +00:00
app:srcCompat="@drawable/ic_skip_next"
2020-05-21 16:00:39 +00:00
tools:ignore="MissingPrefix"
tools:tint="@color/md_black_1000" />
2018-07-27 13:07:33 +00:00
2020-05-21 16:00:39 +00:00
<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"
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-19 21:00:30 +00:00
app:srcCompat="@drawable/ic_shuffle"
2020-05-21 16:00:39 +00:00
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"
2020-05-21 16:00:39 +00:00
android:layout_width="0dp"
2019-08-01 14:13:00 +00:00
android:layout_height="wrap_content"
android:layout_weight="0"
android:paddingStart="8dp"
android:paddingEnd="8dp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
tools:backgroundTint="@color/md_red_400"
tools:layout_height="52dp" />
</androidx.constraintlayout.widget.ConstraintLayout>