我有一个带有此代码的微调器:
<Spinner
android:id="@+id/cover"
android:layout_width="250dp"
android:layout_height="wrap_content"
android:prompt="@string/cover_hint"
android:layout_marginTop="10dip"
android:gravity="center"
android:layout_gravity="center_horizontal" />
但出于某种原因,当它首次加载时(我从ArrayList<String>
加载项目),它看起来太小了。像下面的第一张图片一样。但是一旦我选择了一个项目,它通常就像在第二个图像中一样。
如何让它始终显示为第二张图像?
答案 0 :(得分:0)
您可以尝试使用
强制高度android:layout_height="48dp"
在我尝试了android:padding
和android:textSize
之类的其他内容后,这对我有用,但这两件事似乎都没有效果。