我遇到了一个意想不到的问题ActionBarSherlock
。当我使用时 ,没Holo.Theme.Sherlock.Light.DarkActionBar
问题,看起来像
但如果我选择Holo.Theme.Sherlock.Light
,我会遇到一些Padding
问题DropDownListView
,比如:
我不想Padding
在ListView
项目之间有那么多
我试过制作一个CustomTheme
,但它不起作用
`
<style name="AppTheme" parent="Holo.Theme.Sherlock.Light">
<item name="android:dropDownListViewStyle">@style/DropDownListView</item>
<item name="dropDownListViewStyle">@style/DropDownListView</item>
</style>
<!-- style the items within the overflow menu -->
<style name="DropDownListView" parent="Holo.ListView.Light">
<item name="android:dividerHeight">0dp</item>
<item name="android:dividerPadding">0dp</item>
</style>
`