覆盖所有表单元素样式,例如 HTML+CSS

发布于 2025-01-07 20:49:45 字数 330 浏览 1 评论 0原文

在 HTML/CSS 中,您可以通过在 CSS 中定义 p 来覆盖所有段落,

p { 颜色:蓝色; }

你能在 Android 中执行 mimc 操作吗?我想为 styles.xml 中的所有表单元素定义样式集,然后我编写的每个布局都将使用这些属性。

目前我必须在布局中指定样式:即

这看起来有点冗余(并且容易出错)。

谢谢,

约翰

In HTML/CSS you can override all paragraphs by defining p in CSS

I.e.
p { color: blue;
}

Can you do mimc this in Android? I'd like to define my set of styles for all form elements in styles.xml and then every layout I write would use these properties.

At the moment I have to specify the style in the layout: i.e

<EditText android:id="@+id/address1" style="@style/EditText" />

Which seems a bit redundant (and error prone).

Thanks,

John

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

入画浅相思 2025-01-14 20:49:46

您必须创建一个定义所需样式的 xml 文件,并将其存储在 res/values 文件夹中。

<?xml version="1.0" encoding="utf-8"?>
<resources>
    <style name="CodeFont" parent="@android:style/TextAppearance.Medium">
        <item name="android:layout_width">fill_parent</item>
        <item name="android:layout_height">wrap_content</item>
        <item name="android:textColor">#00FF00</item>
        <item name="android:typeface">monospace</item>
    </style>
</resources>

一旦你有了自己的风格,这就是一个风格的例子。您可以通过执行以下操作将其应用到每个视图:

<TextView
    style="@style/CodeFont"
    android:text="@string/hello" />

此示例来自:

http ://developer.android.com/guide/topics/ui/themes.html

You have to create an xml file which defines the style that you want, and store it in res/values folder.

<?xml version="1.0" encoding="utf-8"?>
<resources>
    <style name="CodeFont" parent="@android:style/TextAppearance.Medium">
        <item name="android:layout_width">fill_parent</item>
        <item name="android:layout_height">wrap_content</item>
        <item name="android:textColor">#00FF00</item>
        <item name="android:typeface">monospace</item>
    </style>
</resources>

This is an example of an style, once you have your style. you can applay it to every view by doing something like this:

<TextView
    style="@style/CodeFont"
    android:text="@string/hello" />

This example is from:

http://developer.android.com/guide/topics/ui/themes.html

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文