1<!--
2  ~ Copyright (C) 2024 The Android Open Source Project
3  ~
4  ~ Licensed under the Apache License, Version 2.0 (the "License");
5  ~ you may not use this file except in compliance with the License.
6  ~ You may obtain a copy of the License at
7  ~
8  ~      http://www.apache.org/licenses/LICENSE-2.0
9  ~
10  ~ Unless required by applicable law or agreed to in writing, software
11  ~ distributed under the License is distributed on an "AS IS" BASIS,
12  ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  ~ See the License for the specific language governing permissions and
14  ~ limitations under the License.
15  -->
16<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
17    xmlns:androidprv="http://schemas.android.com/apk/prv/res/android"
18                android:id="@android:id/content"
19                android:layout_width="wrap_content"
20                android:layout_height="wrap_content"
21                android:minHeight="@dimen/dropdown_touch_target_min_height"
22                android:orientation="horizontal"
23                android:elevation="3dp">
24
25    <LinearLayout
26        android:id="@+id/credential_card"
27        android:layout_width="wrap_content"
28        android:layout_height="wrap_content"
29        android:orientation="horizontal">
30
31        <ImageView
32            android:id="@android:id/icon1"
33            android:layout_width="wrap_content"
34            android:layout_height="wrap_content"
35            android:layout_gravity="center"
36            android:paddingStart="@dimen/autofill_view_left_padding"
37            android:src="@drawable/more_horiz_24px"
38            android:tint="?androidprv:attr/materialColorOnSurface"
39            android:contentDescription="@string/more_options_content_description"
40            android:background="@null"/>
41
42    <LinearLayout
43        android:id="@+id/text_container"
44        android:layout_width="@dimen/autofill_dropdown_textview_max_width"
45        android:layout_height="wrap_content"
46        android:paddingStart="@dimen/autofill_view_left_padding"
47        android:paddingEnd="@dimen/autofill_view_right_padding"
48        android:paddingTop="@dimen/more_options_item_vertical_padding"
49        android:paddingBottom="@dimen/more_options_item_vertical_padding"
50        android:orientation="vertical">
51
52        <TextView
53            android:id="@android:id/text1"
54            android:layout_width="wrap_content"
55            android:layout_height="wrap_content"
56            android:textColor="?androidprv:attr/materialColorOnSurface"
57            style="@style/autofill.TextTitle"/>
58    </LinearLayout>
59
60    </LinearLayout>
61
62</RelativeLayout>
63