我想为微调器添加颜色以及为微调器箭头添加颜色如何在android studio中做到这一点而不添加依赖项
解决方法:
我对此有解决方案,创建一个新的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);
总结 以上是内存溢出为你收集整理的如何在Android Studio中更改微调器及其箭头的颜色全部内容,希望文章能够帮你解决如何在Android Studio中更改微调器及其箭头的颜色所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)