2020-11-24 01:50:09 +01:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:orientation="vertical">
|
|
|
|
|
2020-12-09 00:29:20 +01:00
|
|
|
<com.google.android.material.textfield.TextInputLayout
|
2020-11-24 01:50:09 +01:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2020-12-09 00:29:20 +01:00
|
|
|
android:hint="@string/filter"
|
|
|
|
app:endIconMode="clear_text">
|
2020-11-24 01:50:09 +01:00
|
|
|
|
2020-12-09 00:29:20 +01:00
|
|
|
<com.google.android.material.textfield.TextInputEditText
|
|
|
|
android:id="@+id/pref_filter"
|
|
|
|
android:layout_width="match_parent"
|
2020-11-24 01:50:09 +01:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginStart="10dp"
|
2020-11-24 12:43:59 +01:00
|
|
|
android:layout_marginEnd="10dp"
|
|
|
|
android:layout_gravity="center_vertical"
|
|
|
|
android:layout_weight="1"
|
2020-12-09 00:29:20 +01:00
|
|
|
android:autofillHints="@string/filter"
|
|
|
|
android:gravity="start"
|
|
|
|
android:textStyle="bold"
|
2022-03-15 13:24:51 +01:00
|
|
|
android:inputType="text"
|
|
|
|
android:background="@color/transparent"/>
|
2020-11-24 12:43:59 +01:00
|
|
|
|
2020-12-09 00:29:20 +01:00
|
|
|
</com.google.android.material.textfield.TextInputLayout>
|
2020-11-24 01:50:09 +01:00
|
|
|
|
|
|
|
<ScrollView
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:fillViewport="true">
|
|
|
|
|
|
|
|
<FrameLayout
|
|
|
|
android:id="@+id/frame_layout"
|
|
|
|
android:layout_width="match_parent"
|
2021-02-11 13:48:50 +01:00
|
|
|
android:layout_height="wrap_content" />
|
2020-11-24 01:50:09 +01:00
|
|
|
|
|
|
|
</ScrollView>
|
|
|
|
|
|
|
|
</LinearLayout>
|