android : how to change the style of edit text?(android:如何更改编辑文本的样式?)
问题描述
我正在尝试更改 EditText 的样式?有可能实现吗?如果是这样,我会很高兴被告知,否则还有其他可用的方法.
I'm trying to change the style of the EditText? Is it possible to achieve that? If so I'll appreciate being told about it, otherwise what alternative ways are available.
推荐答案
您可以使用为任何小部件定义的属性 style="@style/your_style"
.
You can use the attribute style="@style/your_style"
that is defined for any widget.
要定义您的样式,您必须在 values 文件夹中创建一个名为 style.xml
的文件(即
esvaluesstyles.xml
)并使用以下内容语法:
To define your style you have to create a file called style.xml
in the values folder (i.e.
esvaluesstyles.xml
) and use the following syntax:
<style name="You.EditText.Style" parent="@android:style/Widget.EditText">
<item name="android:textColor">@color/your_color</item>
<item name="android:gravity">center</item>
</style>
属性 parent="@android:style/Widget.EditText"
很重要,因为它将确保定义的样式扩展了基本的 Android EditText
样式,因此只需要定义与默认样式不同的属性.
The attribute parent="@android:style/Widget.EditText"
is important because it will ensure that the style being defined extends the basic Android EditText
style, thus only properties different from the default style need to be defined.
这篇关于android:如何更改编辑文本的样式?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:android:如何更改编辑文本的样式?
基础教程推荐
- 减少 JVM 暂停时间 >1 秒使用 UseConcMarkSweepGC 2022-01-01
- 无法使用修饰符“public final"访问 java.util.Ha 2022-01-01
- 如何使用 Java 创建 X509 证书? 2022-01-01
- “未找到匹配项"使用 matcher 的 group 方法时 2022-01-01
- Java Keytool 导入证书后出错,"keytool error: java.io.FileNotFoundException &拒绝访问" 2022-01-01
- 降序排序:Java Map 2022-01-01
- Java:带有char数组的println给出乱码 2022-01-01
- 设置 bean 时出现 Nullpointerexception 2022-01-01
- FirebaseListAdapter 不推送聊天应用程序的单个项目 - Firebase-Ui 3.1 2022-01-01
- 在 Libgdx 中处理屏幕的正确方法 2022-01-01