我有一个带有提示的文本输入布局,我希望 ExposedDropdownMenu 结束图标位于提示旁边并居中
下面是我的文本输入布局
<com.google.android.material.textfield.TextInputLayout
android:id="@+id/til_country"
android:layout_below="@+id/tv_phone_description"
style="@style/Widget.MaterialComponents.TextInputLayout.OutlinedBox.Dense.ExposedDropdownMenu"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginStart="30dp"
android:layout_marginLeft="30dp"
android:layout_marginTop="10dp"
android:layout_marginEnd="30dp"
android:layout_marginRight="30dp"
android:layout_marginBottom="10dp"
android:padding="5dp"
app:endIconTint="@color/primaryLightColor"
app:shapeAppearanceOverlay="@style/RoundedTextInputLayout"
app:boxBackgroundColor="#EFEFF2">
<AutoCompleteTextView
android:id="@+id/actv_country"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:completionThreshold="1"
android:dropDownSelector="@color/whiteColor"
android:hint="@string/country"
android:inputType="text"
android:textSize="15sp" />
</com.google.android.material.textfield.TextInputLayout>
我已经尝试在下面添加到 AutoCompleteTextView 但它只使提示居中而不使 ExposedDropDown 结束图标居中
android:gravity="center"