我在材质微调器中的下拉项之间添加分隔符/分隔符时遇到问题。
<fr.ganfra.materialspinner.MaterialSpinner
android:id="@+id/purpose_spin"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:prompt="@string/purpose"
app:ms_multiline="false"
app:ms_hint="@string/purpose"
app:ms_floatingLabelText="@string/purpose"
app:ms_arrowSize="16dp"
app:ms_alignLabels="false" />
答案 0 :(得分:0)
转到style.xml
并添加以下行:
<style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">
<!-- Customize your theme here. -->
<item name="android:dropDownListViewStyle">@style/SpinnerStyle</item>
</style>
在style.xml
<style name="SpinnerStyle" parent="Widget.AppCompat.ListView.DropDown">
<item name="android:divider">#212121</item>
<item name="android:dividerHeight">1dp</item>
</style>