设置微调器弹出背景颜色
Setting spinner popup background color
我可以使用以下方法设置微调器弹出菜单的背景:
<Spinner
android:popupBackground="@color/darkThemeBackgroundColor"/>
但是如何设置它的背景文字颜色呢?
这个方案比较简单,只需要在styles.xml
中加入这段代码即可
<style name="spinnerTheme">
<item name="android:background">@color/colorDark</item>
<item name="android:textColor">@android:color/white</item>
<!-- this is for api 19 text color -->
<item name="android:color">@android:color/white</item>
</style>
这就是您在布局文件中的使用方式
<Spinner
android:id="@+id/spinner"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginStart="8dp"
android:layout_marginTop="8dp"
android:layout_marginEnd="8dp"
android:padding="8dp"
android:entries="@array/aves"
android:theme="@style/spinnerTheme"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
结果是:
我希望这个解决方案对你有帮助,问候。
我可以使用以下方法设置微调器弹出菜单的背景:
<Spinner
android:popupBackground="@color/darkThemeBackgroundColor"/>
但是如何设置它的背景文字颜色呢?
这个方案比较简单,只需要在styles.xml
中加入这段代码即可<style name="spinnerTheme">
<item name="android:background">@color/colorDark</item>
<item name="android:textColor">@android:color/white</item>
<!-- this is for api 19 text color -->
<item name="android:color">@android:color/white</item>
</style>
这就是您在布局文件中的使用方式
<Spinner
android:id="@+id/spinner"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginStart="8dp"
android:layout_marginTop="8dp"
android:layout_marginEnd="8dp"
android:padding="8dp"
android:entries="@array/aves"
android:theme="@style/spinnerTheme"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
结果是:
我希望这个解决方案对你有帮助,问候。