2019-10-02 21:28:12 +02:00
|
|
|
<merge xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
tools:parentTag="androidx.constraintlayout.widget.ConstraintLayout">
|
|
|
|
|
|
|
|
<Button
|
|
|
|
android:id="@+id/resetScheduleButton"
|
2019-12-19 19:09:40 +01:00
|
|
|
style="@style/TuskyButton.Outlined"
|
2019-10-02 21:28:12 +02:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2019-12-19 19:09:40 +01:00
|
|
|
android:layout_marginEnd="16dp"
|
2019-10-02 21:28:12 +02:00
|
|
|
android:text="@string/action_reset_schedule"
|
2020-02-25 18:33:25 +01:00
|
|
|
app:layout_constraintBottom_toTopOf="@id/invalidScheduleWarning"
|
2019-12-19 19:09:40 +01:00
|
|
|
app:layout_constraintStart_toStartOf="parent" />
|
2019-10-02 21:28:12 +02:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/scheduledDateTime"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2019-12-19 19:09:40 +01:00
|
|
|
android:drawablePadding="4dp"
|
2019-10-02 21:28:12 +02:00
|
|
|
android:paddingStart="4dp"
|
|
|
|
android:paddingTop="4dp"
|
2019-12-19 19:09:40 +01:00
|
|
|
android:paddingBottom="16dp"
|
2019-10-02 21:28:12 +02:00
|
|
|
android:textColor="?android:textColorTertiary"
|
|
|
|
android:textSize="?attr/status_text_medium"
|
2020-02-25 18:33:25 +01:00
|
|
|
app:layout_constraintBottom_toTopOf="@id/invalidScheduleWarning"
|
2019-10-02 21:28:12 +02:00
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
2019-12-19 19:09:40 +01:00
|
|
|
app:layout_constraintHorizontal_bias="1"
|
|
|
|
app:layout_constraintStart_toEndOf="@id/resetScheduleButton"
|
2019-10-02 21:28:12 +02:00
|
|
|
tools:text="2020/01/01 00:00:00" />
|
|
|
|
|
2020-02-25 18:33:25 +01:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/invalidScheduleWarning"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:drawablePadding="4dp"
|
|
|
|
android:paddingStart="4dp"
|
|
|
|
android:paddingTop="4dp"
|
|
|
|
android:paddingBottom="16dp"
|
|
|
|
android:textColor="?android:textColorTertiary"
|
|
|
|
android:textSize="?attr/status_text_medium"
|
|
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
app:layout_constraintHorizontal_bias="1"
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
tools:text="@string/warning_scheduling_interval"
|
|
|
|
android:visibility="gone" />
|
|
|
|
|
2019-10-02 21:28:12 +02:00
|
|
|
</merge>
|