我试图在我的应用程序中获得一个 ICS 微调器,并玩了几个小时,最后我使用 HoloEverywhere 来获得它,它正在工作,但我有一个设计问题,是微调器没有包裹它我在 xml 中设置的内容,默认情况下如下所示:
真的,我用谷歌搜索了几个小时,我发现的只是如何调整微调器项目而不是视图本身的大小,这意味着我希望将微调器调整为选定的项目大小,如下所示:
这是我的 XML:
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="40dp"
android:orientation="horizontal" >
<org.holoeverywhere.widget.Spinner
android:id="@+id/spnCities"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:layout_centerVertical="true"
android:layout_marginRight="10dp"
/>
<TextView
android:id="@+id/tvCities"
android:layout_width="70dp"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_centerVertical="true"
android:layout_marginLeft="10dp"
android:text="@string/city"
android:textAppearance="?android:attr/textAppearanceSmall" />
</RelativeLayout>