如何在Android Studio中更改微调器及其箭头的颜色

时间:2019-05-30 06:41:39

标签: android

我想为微调器添加颜色以及为微调器箭头添加颜色如何在android studio中做到这一点而无需添加依赖项

1 个答案:

答案 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);