android – 如何在不使用textview的情况下更改微调器中的文本颜色

android – 如何在不使用textview的情况下更改微调器中的文本颜色,第1张

概述我想在不使用textView的情况下更改微调器的文本颜色,我已经搜索并找到了一些教程 Android: Where is the Spinner widget’s text color attribute hiding? 但主要的是他们使用了textView. <Spinner android:layout_height="wrap_content" android:lay 我想在不使用textVIEw的情况下更改微调器的文本颜色,我已经搜索并找到了一些教程 Android: Where is the Spinner widget’s text color attribute hiding?

但主要的是他们使用了textVIEw.

<Spinner      androID:layout_height="wrap_content"      androID:layout_wIDth="0dp"      androID:layout_weight="1"      androID:entrIEs="@array/Gender_Selection_arrays"      androID:prompt="@string/Gender_Selection"     androID:ID="@+ID/gendersel"     androID:popupBackground="#67656c"/>

我知道这段代码不会改变文字颜色.

我不知道该怎么做,请指导我这样做.

任何帮助都会很明显.

解决方法 我得到了解决方案,创建一个新的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 > gender_adapter = new ArrayAdapter<String> (getActivity(),R.layout.spinner_style,gender_spinner );
总结

以上是内存溢出为你收集整理的android – 如何在不使用textview的情况下更改微调器中的文本颜色全部内容,希望文章能够帮你解决android – 如何在不使用textview的情况下更改微调器中的文本颜色所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1145284.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-31
下一篇 2022-05-31

发表评论

登录后才能评论

评论列表(0条)

保存