- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我正在做一些教程,我尝试尝试使用 textColor。使用每个 Widget 中的属性、布局 xml 或样式属性,这可以很好地工作。但我想知道是否可以定义一个全局 textColor,据我所知是不可能的。
我在这些页面上找到了解决方案:
http://www.therealjoshua.com/2012/01/styling-android-with-defaults/
http://brainflush.wordpress.com/2009/03/15/understanding-android-themes-and-styles/
在我的小程序中,我使用了 EditText、RadioButton 和 Button。如果我使用带有父 @android:TextAppearance 的样式 block 设置每个单个小部件的 TextAppearance,则小部件将丢失其其他属性。所以我搜索了 style.xml 和 theme.xml 并找到了一个非常简短的解决方案:
<resources>
<style name="MyTheme" parent="android:Theme.Holo.Light.DarkActionBar">
<item name="android:editTextColor">@android:color/white</item>
<item name="android:textColorPrimaryDisableOnly">#FFFFFF</item>
<item name="android:color/primary_text_light">#FFFFFF</item>
</style>
</resources>
尽管在 theme.xml 中使用了预定义的颜色
<style name="TextAppearance.Widget.Button" parent="TextAppearance.Small.Inverse">
<item name="android:textColor">@android:color/primary_text_light_nodisable</item>
</style>
我的第一个问题:有没有办法像我对其他属性所做的那样覆盖@android:color/primary_text_light_nodisable 的值?
其实我觉得我自己解决了这个问题:
<resources xmlns:android="http://schemas.android.com/apk/res/android">
<style name="MyTheme" parent="android:Theme.Light">
<item name="android:textAppearance">@style/MyTextAppearance</item>
<item name="android:textAppearanceButton">@style/MyTextAppearanceButton</item>
<item name="android:editTextStyle">@style/MyEditTextStyle</item>
<item name="android:radioButtonStyle">@style/MyRadioButtonStyle</item>
</style>
<style name="MyTextAppearance" parent="@android:style/TextAppearance">
<item name="android:textColor">@android:color/white</item>
</style>
<style name="MyTextAppearanceButton" parent="@android:style/TextAppearance.Widget.Button">
<item name="android:textColor">@android:color/white</item>
</style>
<style name="MyEditTextStyle" parent="@android:style/Widget.EditText">
<item name="android:textColor">@android:color/white</item>
</style>
<style name="MyRadioButtonStyle" parent="@android:style/Widget.CompoundButton.RadioButton">
<item name="android:textColor">@android:color/white</item>
</style>
</resources>
所以我的第二个问题是,这是否是正确的方法,或者是否有一种简短的方法来全局更改文本的颜色?
虽然我认为在 xml 中定义所有这些是最干净的方法,但我想知道您是否建议通过类方法来操作它?
抱歉,我是 Java 和 Android 编程的新手,感谢您的帮助!
最佳答案
您可以在 res/values 下创建一个 colors.xml 并从这里声明您的全局颜色。
<?xml version="1.0" encoding="utf-8"?>
<resources>
<color name="scheme">#007BB3</color>
<color name="blue">#0000FF</color>
<color name="white">#FFFFFF</color>
<color name="grey">#C1C1C1</color>
</resources>
关于Android 将 textColor 值设置为全局,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12057207/
如果我的问题看起来很新手,我很抱歉,textColor 和 android:textColor 有什么区别?我不明白在哪里使用哪个感谢您的帮助 最佳答案 textColor 是 AppCompat 库
我一直想知道这个问题。 构建 XML 时 Android布局,我们可以定义一个TextView使用 RGB 十六进制代码或来自 color.xml 的颜色值的文本颜色文件。 android:textC
Android searchview 有默认的 queryhint textcolor 和 text color 。我们如何使用 AndroidX 在 Android Searchview 中更改 e
我只是想将我的文本文本字段设置为与详细文本标签颜色相同的颜色,这似乎是正确的方法,在这里看到了一些提供此答案的内容,但我收到了错误,有什么想法吗? txtPassword.textColor = ce
我遇到的问题是我无法在以下 javascript 表单中设置两种不同的文本颜色(通过 css 类)。标准类是灰色(灰色文本颜色),但是一旦有人点击“在此处输入您的邮件”,要输入的电子邮件颜色文本应该是
如何将用户输入的颜色传递给 conio.h 中的 textcolor() 函数? textcolor(BLUE); cprintf("Hello"); 工作正常,但是 char c[20]; gets
我是安卓新手。在这上面花了 3 天之后,我无法弄清楚。 android:textColor= 在 TextView 上,但它不会改变颜色。我可以更改所有其他值,但不能更改 textColor。 最佳答
我的应用程序中有一个 Edittext。我在 XML 中以下列方式将其默认颜色设置为黑色: android:textColor="@android:color/black" 布局:
我只是想使用这段代码更改我的回收 View 中的文本颜色 ↓↓↓ itemView.resultTV.textColor = if (result >= 0) R.color.green else R
如何在禁用控件时更改文本的颜色。我想在 C# winforms 中禁用控件时设置不同的颜色。 最佳答案 编辑:我在评论中犯了与 Cody 相同的错误,因此更正了我的答案。 要看是哪个控件。 例如,如果
在flutter和我的应用程序中,我尝试不使用FlatButton来更改一些ThemeData文本颜色,因为在应用程序的某些部分中,我希望按钮具有白色或红色文本, 我如何正常设置此文本颜色? 例如:
对于我的 uipickerview,我有: - (UIView *)pickerView:(UIPickerView *)pickerView viewForRow:(NSInteger)row fo
我有这样的布局。这里我将 textColor 设置为红色。 当我在模拟器上运行它时,一切都按预期工作。但是,当我在设备上运行时,textColor 是白色的。它曾经在设备上工作。 我用模拟器做了很多代
我在使用标准 android Switch 组件时遇到了一个奇怪的问题。 我已经分配了我的自定义跟踪器和拇指可绘制对象 - 一切看起来和工作正常,除了 textColor 属性的颜色始终是深色(可能是
我编写了一个依赖资源中定义的颜色的应用程序。有些是直接在布局 XML 文件中设置的,有些是在代码中设置的。示例: res/values/styles.xml 中的颜色定义: #33B5E5 布局:
我的应用程序中有几个按钮,我想为所有按钮应用一种样式。 以下是我放在 values 文件夹中的 styles.xml 文件。 bold #282780
我一直在研究在用 C 编写的 DOS 程序中使用颜色。有人告诉我 conio.h 具有 textcolor() 函数,但是当我在我的代码中使用它时,编译器/链接器抛出错误提示我有一个未定义的函数引用。
我正在做一些教程,我尝试尝试使用 textColor。使用每个 Widget 中的属性、布局 xml 或样式属性,这可以很好地工作。但我想知道是否可以定义一个全局 textColor,据我所知是不可能
我正在尝试将通过代码创建的 ColorStateList 应用为 TextView 的 TextColor。问题是,如果我使用在 xml 中定义的 ColorStateList,它会起作用,但当我通过
我设法在我的代码中使用了一个 spinner 并且想通过那个 spinner 改变 MainActivity 文件中某个文本的 textColor,但是他位于另一个类文件 - Einstellunge
我是一名优秀的程序员,十分优秀!