aboutsummaryrefslogtreecommitdiff
path: root/app/src/main/res/layout/dialog_go_to_thing_edit_text.xml
blob: 3775b2d3b64bd9f1b6936cb904816da89a80eabc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<?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="wrap_content"
    android:orientation="vertical">

    <com.google.android.material.textfield.TextInputLayout
        style="@style/Widget.Material3.TextInputLayout.OutlinedBox"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:paddingStart="16dp"
        android:paddingTop="8dp"
        android:paddingEnd="16dp"
        android:paddingBottom="8dp"
        app:boxStrokeColor="?attr/primaryTextColor"
        app:hintTextColor="?attr/primaryTextColor">

        <com.google.android.material.textfield.TextInputEditText
            android:id="@+id/text_input_edit_text_go_to_thing_edit_text"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:fontFamily="?attr/font_family"
            android:hint="@string/go_to_thing_hint"
            android:textColor="?attr/primaryTextColor"
            android:textSize="?attr/font_default"
            android:singleLine="true"
            android:imeOptions="actionDone"/>

    </com.google.android.material.textfield.TextInputLayout>

    <androidx.recyclerview.widget.RecyclerView
        android:id="@+id/recycler_view_go_to_thing_edit_text"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        app:layoutManager="androidx.recyclerview.widget.LinearLayoutManager" />

</LinearLayout>