android字体颜色如何设置?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了android字体颜色如何设置?相关的知识,希望对你有一定的参考价值。
android设置了layout的背景色后,其中的控件(比如TextView)的字体变灰,这是为什么呢? 并没有对TextView的字体设置颜色。求高人指点!!谢谢~
由于你没有自己定义颜色,默认为灰色。
有两种方式设置:
1:在java类中
TextView tv = new TextView(this);
tv.setTextColor(Color.RED);
利用这种方式设置字体颜色。
2:在xml文件中
android:id="@+id/email"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="邮箱"
android:textColor=""
/>
在你的TextView中有textColor属性,给属性值为RGB格式就行了.
tv.setTextColor(Color.RED);
利用这种方式设置字体颜色。
由于你没有自己定义颜色,默认为灰色。本回答被提问者采纳
android中OptionsMenu(包括点击more展开的部分)字体颜色之类的如何设置?
问题早已解决,在res/values目录下的styles.xml就可以修改。
谢谢各位的参与。
以上是关于android字体颜色如何设置?的主要内容,如果未能解决你的问题,请参考以下文章