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-05-15 18:45:42 +00:00
|
|
|
<code.name.monkey.appthemehelper.common.views.ATESecondaryTextView
|
|
|
|
android:id="@+id/timerDisplay"
|
|
|
|
style="@style/TextAppearance.MaterialComponents.Headline6"
|
|
|
|
android:layout_width="wrap_content"
|
2018-07-27 13:07:33 +00:00
|
|
|
android:layout_height="wrap_content"
|
2019-05-15 18:45:42 +00:00
|
|
|
android:layout_gravity="center" />
|
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:paddingTop="12dp"
|
|
|
|
android:progressDrawable="@drawable/color_progress_seek"
|
|
|
|
android:splitTrack="false"
|
|
|
|
android:thumb="@drawable/switch_thumb_material"
|
|
|
|
tools:progress="20" />
|
|
|
|
|
|
|
|
<CheckBox
|
|
|
|
android:id="@+id/shouldFinishLastSong"
|
|
|
|
style="@style/TextAppearance.MaterialComponents.Subtitle1"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center"
|
|
|
|
android:text="@string/finish_last_song" />
|
2018-08-10 17:10:43 +00:00
|
|
|
|
2019-05-15 18:45:42 +00:00
|
|
|
</LinearLayout>
|