2

以下を使用して、スピナー ドロップダウンで選択したオプションの背景をカスタマイズできます。

<item name="android:spinnerStyle">@style/customSpinner</item>
<style name="customSpinner" parent="@android:style/Widget.Holo.Light.Spinner">
<item name="android:textColor">#000000</item>
<item name="android:background">#000000</item>
</style>

しかし、ドロップダウンにあるオプションのリストの背景とテキストの色を変更することはできません。どうすればそれを達成できますか?

4

1 に答える 1

1
adapter.setDropDownViewResource(R.layout.custom_spinner);

custom_spinner.xml -

<?xml version="1.0" encoding="utf-8"?>
<TextView
  xmlns:android="http://schemas.android.com/apk/res/android"
  parent="@android:style/TextAppearance_Widget_DropDownItem"
  android:textColor="#988767"
>
</TextView>
于 2011-11-10T10:12:59.050 に答える