我想为微调器添加颜色以及为微调器箭头添加颜色如何在android studio中做到这一点而无需添加依赖项
答案 0 :(得分:3)
我对此有解决方案,创建一个新的xml spinner_style.xml
<?xml version="1.0" encoding="UTF-8"?>
<TextView
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:textColor="@color/Black" />
并将此布局固定为您活动中的微调样式:
ArrayAdapter<String> genderAdapter = new ArrayAdapter<String> (getActivity(), R.layout.spinner_style, gender_spinner);