2015-04-28 40 views
0

造型我的微調,在下拉列表彈出類似的對話, 後,我試圖設置樂府微調顯示下拉列表中的對話框

<item name="android:spinnerMode">dropdown</item> 

但結果卻是這樣

enter image description here

我不喜歡這個影子。

當我刪除前一行;我得到這個結果

enter image description here

這裏是style.xml我的微調部分

<style name="MyTheme.SpinnerAppTheme" parent="android:Widget.Spinner"> 
     <item name="android:background">@drawable/apptheme_spinner_background_holo_dark</item> 
     <item name="android:spinnerMode">dropdown</item><!--i really don't like the result of this line--> 
     <item name="android:dropDownListViewStyle">@android:style/Widget.Spinner.DropDown</item> 
    </style> 

問題是如何回到默認的下拉式的

+0

對不起,你的問題是什麼? – RafaelC

+0

檢查[這](http://stackoverflow.com/questions/17418456/spinner-shows-like-dialog)我認爲你有同樣的問題;) – Strider

+0

我看到它發佈之前,它並沒有幫助 –

回答

0

我要解決它加入這個

</style> 
      <style name="MyTheme" parent="@android:style/Theme.Holo.Light"> 
       <item name="android:dropDownListViewStyle">@style/MyTheme.MySpinnerStyle</item> 
      </style> 
<style name="MyTheme.MySpinnerStyle" parent="android:style/Widget.Holo.Light.ListView.DropDown"> 
     <item name="android:itemBackground">#fff</item> 
     <item name="android:dividerHeight">1dp</item> 
    </style> 

祕密在「.Holo.light」

相關問題