2018-07-27 18:37:33 +05:30
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2018-08-10 22:40:43 +05:30
|
|
|
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="wrap_content"
|
2018-11-13 09:00:08 +05:30
|
|
|
android:background="@android:color/transparent">
|
2018-07-27 18:37:33 +05:30
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="vertical">
|
|
|
|
|
|
|
|
<code.name.monkey.appthemehelper.common.views.ATEPrimaryTextView
|
2018-08-30 14:59:30 +05:30
|
|
|
android:id="@+id/title"
|
2018-11-13 09:00:08 +05:30
|
|
|
style="@style/SubTitleTextAppearance"
|
|
|
|
android:padding="12dp"
|
|
|
|
android:text="@string/action_sleep_timer" />
|
|
|
|
|
|
|
|
<View
|
2018-07-27 18:37:33 +05:30
|
|
|
android:layout_width="match_parent"
|
2018-11-13 09:00:08 +05:30
|
|
|
android:layout_height="1dp"
|
|
|
|
android:background="?dividerColor" />
|
2018-07-27 18:37:33 +05:30
|
|
|
|
|
|
|
<code.name.monkey.appthemehelper.common.views.ATESecondaryTextView
|
2018-12-06 15:53:03 +05:30
|
|
|
android:id="@+id/timerDisplay"
|
2018-07-27 18:37:33 +05:30
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2018-11-13 09:00:08 +05:30
|
|
|
android:padding="12dp"
|
2018-07-27 18:37:33 +05:30
|
|
|
android:textAppearance="?android:textAppearanceLarge" />
|
|
|
|
|
|
|
|
|
|
|
|
<SeekBar
|
2018-12-06 15:53:03 +05:30
|
|
|
android:id="@+id/seekBar"
|
2018-07-27 18:37:33 +05:30
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:maxHeight="3dp"
|
2018-08-30 14:59:30 +05:30
|
|
|
android:paddingTop="12dp"
|
2018-07-27 18:37:33 +05:30
|
|
|
android:progressDrawable="@drawable/color_progress_seek"
|
|
|
|
android:splitTrack="false"
|
|
|
|
android:thumb="@drawable/switch_thumb_material"
|
|
|
|
tools:progress="20" />
|
|
|
|
|
2019-01-28 16:15:51 +05:30
|
|
|
<com.google.android.material.button.MaterialButton
|
|
|
|
android:id="@+id/actionSet"
|
2018-07-27 18:37:33 +05:30
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2019-01-28 16:15:51 +05:30
|
|
|
android:layout_marginStart="12dp"
|
|
|
|
android:layout_marginEnd="12dp"
|
|
|
|
android:gravity="center_vertical"
|
|
|
|
android:paddingTop="12dp"
|
|
|
|
android:paddingBottom="12dp"
|
|
|
|
android:text="@string/action_set"
|
|
|
|
android:textColor="@color/md_white_1000"
|
|
|
|
app:backgroundTint="@color/md_pink_A400" />
|
|
|
|
|
2018-07-27 18:37:33 +05:30
|
|
|
|
2019-01-28 16:15:51 +05:30
|
|
|
<com.google.android.material.button.MaterialButton
|
|
|
|
android:id="@+id/actionCancel"
|
|
|
|
style="@style/Widget.MaterialComponents.Button.OutlinedButton"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginStart="12dp"
|
|
|
|
android:layout_marginEnd="12dp"
|
|
|
|
android:gravity="center_vertical"
|
|
|
|
android:paddingTop="12dp"
|
|
|
|
android:paddingBottom="12dp"
|
|
|
|
android:text="@android:string/cancel"
|
|
|
|
app:strokeWidth="2dp"
|
|
|
|
tools:visibility="visible" />
|
2018-07-27 18:37:33 +05:30
|
|
|
|
2018-08-10 22:40:43 +05:30
|
|
|
|
2018-07-27 18:37:33 +05:30
|
|
|
</LinearLayout>
|
|
|
|
</FrameLayout>
|