2020-12-22 13:29:38 +01:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<LinearLayout
|
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
2021-08-31 09:40:39 +05:30
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
2020-12-22 13:29:38 +01:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:paddingTop="12dp"
|
|
|
|
android:orientation="vertical">
|
|
|
|
|
|
|
|
<View
|
|
|
|
android:layout_width="16dp"
|
|
|
|
android:layout_height="2dp"
|
|
|
|
android:layout_gravity="center"
|
|
|
|
android:background="@drawable/drag_handle" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:paddingTop="8dp"
|
|
|
|
android:paddingBottom="16dp"
|
|
|
|
android:textSize="17sp"
|
|
|
|
android:gravity="center"
|
|
|
|
android:id="@+id/textView3"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:textColor="?attr/primaryText"
|
2021-01-27 18:24:52 +01:00
|
|
|
android:text="@string/groups" />
|
2020-12-22 13:29:38 +01:00
|
|
|
|
|
|
|
<View
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="1dp"
|
|
|
|
android:background="@color/divider2" />
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:minHeight="150dp"
|
|
|
|
android:orientation="vertical">
|
|
|
|
|
|
|
|
<com.google.android.material.chip.ChipGroup
|
|
|
|
android:id="@+id/groupChipGroup"
|
2021-09-03 11:24:22 +05:30
|
|
|
android:paddingStart="8dp"
|
|
|
|
android:paddingEnd="8dp"
|
2020-12-22 13:29:38 +01:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content">
|
|
|
|
</com.google.android.material.chip.ChipGroup>
|
|
|
|
</LinearLayout>
|
|
|
|
|
2021-05-16 13:04:58 +02:00
|
|
|
<LinearLayout
|
|
|
|
android:layout_gravity="end"
|
2020-12-22 13:29:38 +01:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2021-05-16 13:04:58 +02:00
|
|
|
android:orientation="horizontal">
|
|
|
|
<Button
|
|
|
|
android:id="@+id/btnSave"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:textColor="@color/colorSecondary"
|
|
|
|
android:text="@string/save"
|
2021-08-31 09:40:39 +05:30
|
|
|
app:rippleColor="@color/dialog_button_ripple_color"
|
|
|
|
style="@style/Widget.MaterialComponents.Button.TextButton" />
|
2021-05-16 13:04:58 +02:00
|
|
|
|
|
|
|
<Button
|
|
|
|
android:id="@+id/btnClear"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:textColor="@color/colorSecondary"
|
|
|
|
android:text="@string/clear"
|
2021-08-31 09:40:39 +05:30
|
|
|
app:rippleColor="@color/dialog_button_ripple_color"
|
|
|
|
style="@style/Widget.MaterialComponents.Button.TextButton" />
|
2021-05-16 13:04:58 +02:00
|
|
|
</LinearLayout>
|
|
|
|
|
2020-12-22 13:29:38 +01:00
|
|
|
</LinearLayout>
|