我想禁用将项目分隔成微调器的默认分隔器。
我试图创造自己的风格
<style name="MyDropDownWithoutDivider" parent="Widget.Sherlock.TextView.SpinnerItem">
<item name="android:dividerHeight">0dp</item>
<item name="android:divider">@null</item>
<item name="android:listSelector">@drawable/selector_action_bar</item>
</style>
并将其应用于我的微调器
<Spinner
android:layout_width="match_parent"
android:layout_height="match_parent"
style="@style/MyDropDownWithoutDivider" />
但它根本不起作用......