在这里输入图像描述[我有4个微调器,选择后第一个微调器第二个微调器项目将来。当我打开页面时它显示像图像,第一个文本处于正确位置但第三个元素有一些间隙,当我选择我的第一个项目然后第二个项目自动选择其中一个列表,并且我没有在图像中提到的差距。请帮我解决这个问题。
我的布局中的这个微调器
fixed
Spinner项目是:
<Spinner
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="10dp"
android:layout_marginTop="10dp"
android:entries="@array/subloc"
android:gravity="left"
android:paddingBottom="5dp"
android:paddingTop="10dp"
android:textSize="18sp"
/>
答案 0 :(得分:1)
<强>步骤1:强> 尝试使用默认的 android.R.layout.simple_spinner_dropdown_item 进行微调器下拉,它将完美展现,没有任何空间 OrElse运算
<强> //步骤2 强>:
<RelativeLayout 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">
<TextView
android:id="@+id/spinner1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true"
android:hint="Select item"
android:background="@drawable/spin"/>
</RelativeLayout>
答案 1 :(得分:0)
尝试更改Spinner项目,如下所示。
<TextView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@android:id/text1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:singleLine="true"
android:textColor="#000"
android:paddingTop="15dp"
android:paddingBottom="15dp"
android:textSize="15sp"
android:text="dvvdv"/>
答案 2 :(得分:0)
您可能在 选择Subnature String 之前添加了空间。尝试删除该空间。