我有一个微调器,并将spinnerMode设置为对话框,以便文本将换行到Android 4.2+上的新行,但这样做会导致微调器上的信息不填充宽度。即http://i.imgur.com/TDMXNnZ.png。如何让它填充宽度,但也将它包裹在4.2 +上的新行上?
<Spinner
android:id="@+id/spinner3"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:spinnerMode="dialog" />
答案 0 :(得分:0)
确保包含微调器的布局设置为:
android:layout_width="fill_parent"
实质上,这会影响该布局中所有小部件的属性。
希望这会有所帮助:)