1<?xml version="1.0" encoding="utf-8"?> 2<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 3 android:layout_width="match_parent" 4 android:layout_height="match_parent" 5 android:orientation="vertical"> 6 7 <com.google.android.material.textfield.TextInputLayout 8 style="@style/Widget.Material3.TextInputLayout.OutlinedBox.ExposedDropdownMenu" 9 android:id="@+id/country_dropdown_input" 10 android:layout_width="match_parent" 11 android:layout_height="match_parent" 12 android:hint="@string/main_activity_country_dropdown_hint"> 13 14 <AutoCompleteTextView 15 android:id="@+id/country_dropdown_input_edit_text" 16 android:layout_width="match_parent" 17 android:layout_height="wrap_content" 18 android:hint="@string/main_activity_country_dropdown_hint" 19 android:imeOptions="actionDone" 20 android:inputType="text" /> 21 22 </com.google.android.material.textfield.TextInputLayout> 23 24</LinearLayout> 25