summaryrefslogtreecommitdiffstats
path: root/mobile/android/android-components/components/feature/autofill/src/main/res/layout/mozac_feature_autofill_search.xml
blob: cdefaa8152310e4fed5869d1672913dc9037e77d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<?xml version="1.0" encoding="utf-8"?>
<!-- This Source Code Form is subject to the terms of the Mozilla Public
   - License, v. 2.0. If a copy of the MPL was not distributed with this
   - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="vertical"
    android:padding="16dp">
    <EditText
        android:id="@+id/mozac_feature_autofill_search"
        android:background="@android:color/transparent"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:inputType="textUri"
        android:singleLine="true"
        android:hint="@string/mozac_feature_autofill_search_hint"
        android:importantForAutofill="no" />
    <androidx.recyclerview.widget.RecyclerView
        android:id="@+id/mozac_feature_autofill_list"
        android:orientation="vertical"
        android:layout_width="match_parent"
        android:layout_height="wrap_content" />
</LinearLayout>