要設(shè)置Android滾動(dòng)選擇控件的樣式,可以通過以下幾種方式來實(shí)現(xiàn):
<style name="MyCustomStyle">
<item name="android:background">@drawable/my_custom_background</item>
<item name="android:textColor">#FFFFFF</item>
</style>
然后在布局文件中使用該樣式:
<NumberPicker
android:id="@+id/numberPicker"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
style="@style/MyCustomStyle"/>
<style name="MyCustomTheme" parent="Theme.AppCompat.Light.DarkActionBar">
<item name="android:colorControlNormal">#FF0000</item>
</style>
然后在AndroidManifest.xml文件中將該主題應(yīng)用到應(yīng)用程序或Activity中:
<application
android:theme="@style/MyCustomTheme">
...
</application>
<NumberPicker
android:id="@+id/numberPicker"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/my_custom_background"
android:textColor="#FFFFFF"/>
然后在布局文件中引用該自定義布局:
<include layout="@layout/number_picker_layout"/>
通過以上方法,可以方便地自定義Android滾動(dòng)選擇控件的樣式,使其符合應(yīng)用程序的整體風(fēng)格和設(shè)計(jì)要求。