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