Android Spinner樣式怎樣添加分割線(xiàn)

小樊
130
2024-07-20 06:40:42

要向Android Spinner添加分割線(xiàn),可以通過(guò)自定義Spinner的樣式來(lái)實(shí)現(xiàn)。以下是一種簡(jiǎn)單的方法:

  1. 創(chuàng)建一個(gè)名為spinner_divider.xml的drawable文件,其中包含一個(gè)水平分割線(xià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>
  1. 在res/values/styles.xml文件中定義一個(gè)新的樣式,可以根據(jù)需要修改樣式:
<style name="SpinnerStyle" parent="Widget.AppCompat.Spinner">
    <item name="android:background">@drawable/spinner_divider</item>
</style>
  1. 在布局文件中將Spinner的樣式設(shè)置為我們定義的樣式:
<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ì)和樣式。

0