我正在使用带有自定义适配器的AutoCompleteTextView
,因为我需要自定义布局。
这是布局
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:clickable="false"
android:orientation="vertical"
>
<TextView
...
android:gravity="center_vertical"
android:textSize="@dimen/text_size_16"
tools:text="Name"
/>
<LinearLayout
....
android:orientation="vertical"
android:clickable="false"
android:layout_width="match_parent"
android:layout_height="wrap_content"
>
</LinearLayout>
</LinearLayout>
我尝试在TextView
中使用边距,但它们不起作用。填充不是解决方案,因为textview背景是可点击的,我需要将文本垂直居中。
知道为什么会发生这种情况,我该如何解决?