要向Android Spinner添加分割線(xiàn),可以通過(guò)自定義Spinner的樣式來(lái)實(shí)現(xiàn)。以下是一種簡(jiǎn)單的方法:
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="line">
<stroke android:width="1dp" android:color="#000000" />
</shape>
<style name="SpinnerStyle" parent="Widget.AppCompat.Spinner">
<item name="android:background">@drawable/spinner_divider</item>
</style>
<Spinner
android:id="@+id/spinner"
android:layout_width="match_parent"
android:layout_height="wrap_content"
style="@style/SpinnerStyle"/>
這樣就可以向Spinner添加分割線(xiàn)了。您可以根據(jù)需要修改分割線(xiàn)的顏色、粗細(xì)和樣式。