2018-07-27 13:07:33 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2019-05-15 18:45:42 +00:00
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2018-07-27 13:07:33 +00:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2019-05-15 18:45:42 +00:00
|
|
|
android:orientation="vertical">
|
2018-07-27 13:07:33 +00:00
|
|
|
|
2019-09-29 08:57:27 +00:00
|
|
|
<com.google.android.material.textview.MaterialTextView
|
2019-05-15 18:45:42 +00:00
|
|
|
android:id="@+id/timerDisplay"
|
|
|
|
android:layout_width="wrap_content"
|
2018-07-27 13:07:33 +00:00
|
|
|
android:layout_height="wrap_content"
|
2020-05-23 22:26:45 +00:00
|
|
|
android:layout_marginStart="8dp"
|
|
|
|
android:paddingHorizontal="16dp"
|
|
|
|
android:paddingVertical="16dp"
|
2019-09-02 14:51:53 +00:00
|
|
|
android:textAppearance="@style/TextViewHeadline6" />
|
2018-07-27 13:07:33 +00:00
|
|
|
|
2019-05-15 18:45:42 +00:00
|
|
|
<androidx.appcompat.widget.AppCompatSeekBar
|
|
|
|
android:id="@+id/seekBar"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:maxHeight="3dp"
|
|
|
|
android:splitTrack="false"
|
|
|
|
tools:progress="20" />
|
|
|
|
|
2019-09-02 14:51:53 +00:00
|
|
|
<com.google.android.material.checkbox.MaterialCheckBox
|
2019-05-15 18:45:42 +00:00
|
|
|
android:id="@+id/shouldFinishLastSong"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2020-05-23 22:26:45 +00:00
|
|
|
android:layout_marginStart="16dp"
|
|
|
|
android:layout_marginTop="16dp"
|
|
|
|
android:layout_marginEnd="16dp"
|
2019-09-02 14:51:53 +00:00
|
|
|
android:text="@string/finish_last_song"
|
|
|
|
android:textAppearance="@style/TextViewSubtitle1" />
|
2018-08-10 17:10:43 +00:00
|
|
|
|
2019-05-15 18:45:42 +00:00
|
|
|
</LinearLayout>
|