Xamarin Android通过一种风格控制文本颜色
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Xamarin Android通过一种风格控制文本颜色相关的知识,希望对你有一定的参考价值。
对于我的Xamarin android屏幕,我希望所有EditText元素都使用白色字体。下面是我的Android项目的styles.xml文件的当前版本。如何更改以确保任何EditText中的所有文本都是白色的?
<?xml version="1.0" encoding="utf-8"?>
<resources>
<style name="MyTheme" parent="@android:style/Theme.Holo.Light">
<item name="android:actionBarStyle">@style/MyTheme.ActionBarStyle</item>
<item name="android:textColor">#ffffff</item>
</style>
<style name="MyTheme.ActionBarStyle" parent="@android:style/Widget.Holo.Light.ActionBar">
<item name="android:titleTextStyle">@style/MyTheme.ActionBar.TitleTextStyle</item>
<item name="android:background">#333333</item>
</style>
<style name="MyTheme.ActionBar.TitleTextStyle" parent="@android:style/TextAppearance.Holo.Widget.ActionBar.Title">
<item name="android:textColor">#ffffff</item>
</style>
</resources>
答案
我希望所有EditText元素都使用白色字体。
正如@Jon Douglas所说,你应该在你的editTextStyle
中使用MyTheme
item属性,修改你的styles.xml
,如下所示:
<?xml version="1.0" encoding="utf-8" ?>
<resources>
<style name="MyTheme" parent="@android:style/Theme.Holo.Light">
...
<item name="editTextStyle">@style/MyEditTextStyle</item>
</style>
<style name="MyEditTextStyle" parent="@android:style/Widget.EditText">
<item name="android:background">#333333</item>
<item name="android:textColor">#ffffff</item>
</style>
</resources>
效果:
以上是关于Xamarin Android通过一种风格控制文本颜色的主要内容,如果未能解决你的问题,请参考以下文章
通过USB连接到Xamarin.Android应用程序与网站进行通信