2020-09-08 17:02:05 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
2020-10-31 10:58:33 +00:00
|
|
|
<androidx.constraintlayout.widget.ConstraintLayout
|
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
2020-10-09 18:24:02 +00:00
|
|
|
android:layout_width="match_parent"
|
2020-10-31 10:58:33 +00:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:paddingTop="16dp">
|
2020-09-08 17:02:05 +00:00
|
|
|
|
2020-10-31 10:58:33 +00:00
|
|
|
<TextView
|
2020-09-08 17:02:05 +00:00
|
|
|
android:id="@+id/textView"
|
2020-09-28 13:05:01 +00:00
|
|
|
android:layout_width="0dp"
|
2020-09-08 17:02:05 +00:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginStart="16dp"
|
|
|
|
android:layout_marginEnd="16dp"
|
|
|
|
android:clickable="false"
|
|
|
|
android:focusable="false"
|
|
|
|
android:gravity="center"
|
|
|
|
android:text="@string/notification_actions_summary"
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
app:layout_constraintHorizontal_bias="0.0"
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
2020-10-31 10:58:33 +00:00
|
|
|
app:layout_constraintTop_toTopOf="parent" />
|
2020-09-08 17:02:05 +00:00
|
|
|
|
|
|
|
<include
|
|
|
|
android:id="@+id/notificationAction0"
|
|
|
|
layout="@layout/settings_notification_action"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginTop="8dp"
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
2020-10-31 10:58:33 +00:00
|
|
|
app:layout_constraintTop_toBottomOf="@+id/textView" />
|
2020-09-08 17:02:05 +00:00
|
|
|
|
|
|
|
<include
|
|
|
|
android:id="@+id/notificationAction1"
|
|
|
|
layout="@layout/settings_notification_action"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
app:layout_constraintTop_toBottomOf="@+id/notificationAction0" />
|
|
|
|
|
|
|
|
<include
|
|
|
|
android:id="@+id/notificationAction2"
|
|
|
|
layout="@layout/settings_notification_action"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
app:layout_constraintTop_toBottomOf="@+id/notificationAction1" />
|
|
|
|
|
|
|
|
<include
|
|
|
|
android:id="@+id/notificationAction3"
|
|
|
|
layout="@layout/settings_notification_action"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
app:layout_constraintTop_toBottomOf="@+id/notificationAction2" />
|
|
|
|
|
|
|
|
<include
|
|
|
|
android:id="@+id/notificationAction4"
|
|
|
|
layout="@layout/settings_notification_action"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
app:layout_constraintTop_toBottomOf="@+id/notificationAction3" />
|
|
|
|
|
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|