48

问题: 在哪里可以找到具有十六进制颜色代码的默认样式 xml?

我正在寻找 Style 'buttonStyle' 和其他默认样式,它们会影响 TextView、Button 等方面(如果您不更改方面的样式)

我抬头看了看,<instalation_folder>\android-sdk\platforms\android-<versio>\data\res\values<instalation_folder>\android-sdk\platforms\android-<version>\data\res\colors实际上并没有找到我要找的东西。

希望我的问题很清楚。


由于声誉低,我还不能回答这个问题。这里是答案

回答

通过一些谷歌搜索,我发现'buttonStyle'实际上是'Widget.Button' - 使用默认设置样式化Android

这是它的工作原理:

  • 正如我所说,'buttonStyle' 样式是精确定义的 'Widget.Button' 样式\android-sdk\platforms\android-<version>\data\res\values\styles.xml。背景设置为:@android:drawable/btn_default
  • \android-sdk\platforms\android-<version>\data\res\drawable\btn_default.xml将按钮的背景颜色定义为选择器。颜色实际上取决于按钮的状态。默认颜色设置为@drawable/btn_default_normal
  • 经过一番搜索,我发现 btn_default_normal 是位于\android-sdk\platforms\android-<version>\data\res\drawable-mdpi

我觉得这有点令人困惑,但我希望它会对某人有所帮助,也许......

4

2 回答 2

141

了解 Android 样式的工作原理可能有点混乱。

我将尝试通过一个示例来解释基本的工作流程。

假设您想知道按钮的默认背景是什么。这可以是简单的颜色(不太可能)或可绘制的(有许多不同类型的可绘制对象)。

Android有主题。主题基本上定义了将哪种样式应用于哪个小部件。因此,我们的第一步是找到默认的android主题。

你在下面找到它android-sdk\platforms\android-15\data\res\values\themes.xml

在此主题文件中,搜索button.

你会发现这样的东西:

<!-- Button styles -->

<item name="buttonStyle">@android:style/Widget.Button</item>

这意味着主题将样式Widget.Button应用于按钮。

好的,现在让我们找到样式Widget.Button

所有默认的 Android 样式都在文件中定义android-sdk\platforms\android-15\data\res\values\styles.xml

现在搜索Widget.Button

你会发现这样的东西:

<style name="Widget.Button">
    <item name="android:background">@android:drawable/btn_default</item>
    <item name="android:focusable">true</item>
    <item name="android:clickable">true</item>
    <item name="android:textAppearance">?android:attr/textAppearanceSmallInverse</item>
    <item name="android:textColor">@android:color/primary_text_light</item>
    <item name="android:gravity">center_vertical|center_horizontal</item>
</style>

有趣的是:

<item name="android:background">@android:drawable/btn_default</item>

这意味着有一个名为btn_defaultset as button background 的可绘制对象。

现在我们需要btn_default.*android-sdk\platforms\android-15\data\res.

这可以是图像(不太可能)或 xml 文件,如btn_default.xml.

经过一番搜索,您将找到该文件android-sdk\platforms\android-15\data\res\drawable\btn_default.xml

它包含如下内容:

<selector xmlns:android="http://schemas.android.com/apk/res/android">
    <item android:state_window_focused="false" android:state_enabled="true" android:drawable="@drawable/btn_default_normal" />
    <item android:state_window_focused="false" android:state_enabled="false" android:drawable="@drawable/btn_default_normal_disable" />
    <item android:state_pressed="true" android:drawable="@drawable/btn_default_pressed" />
    <item android:state_focused="true" android:state_enabled="true" android:drawable="@drawable/btn_default_selected" />
    <item android:state_enabled="true" android:drawable="@drawable/btn_default_normal" />
    <item android:state_focused="true" android:drawable="@drawable/btn_default_normal_disable_focused" />
    <item android:drawable="@drawable/btn_default_normal_disable" />
</selector>

现在您必须了解这是一个可绘制的选择器(许多可绘制类型之一)。此选择器根据按钮状态选择不同的背景。例如,如果按下按钮,则它具有不同的背景。

不,让我们看一下默认状态。

<item android:state_enabled="true" android:drawable="@drawable/btn_default_normal" />

它应用了一个名为btn_default_normal.

现在我们需要找到这个drawable。

同样,我们需要btn_default_normal.*android-sdk\platforms\android-15\data\res.

这又可以是图像或 xml 文件,如btn_default_normal.xml.

您会在不同的可绘制文件夹中找到多个名为“btn_default_normal.9.png”的文件,用于不同的分辨率。

:) 现在您知道它btn_default_normal.9.png设置为按钮背景。

于 2012-11-04T21:53:02.437 回答
8

在 XML 中声明时,您可以找到 android 小部件的默认样式:

style="@android:style/Widget.Button" - standard Button
style="@android:style/Widget.TextView" - standard TextView

例如,这是默认按钮的样式:

    <style name="Widget.Button">
        <item name="android:background">@android:drawable/btn_default</item>
        <item name="android:focusable">true</item>
        <item name="android:clickable">true</item>
        <item name="android:textAppearance">?android:attr/textAppearanceSmallInverse</item>
        <item name="android:textColor">@android:color/primary_text_light</item>
        <item name="android:gravity">center_vertical|center_horizontal</item>
    </style>

默认按钮的背景:

<selector xmlns:android="http://schemas.android.com/apk/res/android">
    <item android:drawable="@drawable/btn_default_normal" android:state_enabled="true" android:state_window_focused="false"/>
    <item android:drawable="@drawable/btn_default_normal_disable" android:state_enabled="false" android:state_window_focused="false"/>
    <item android:drawable="@drawable/btn_default_pressed" android:state_pressed="true"/>
    <item android:drawable="@drawable/btn_default_selected" android:state_enabled="true" android:state_focused="true"/>
    <item android:drawable="@drawable/btn_default_normal" android:state_enabled="true"/>
    <item android:drawable="@drawable/btn_default_normal_disable_focused" android:state_focused="true"/>
    <item android:drawable="@drawable/btn_default_normal_disable"/>
</selector> 

您可以在任何图形编辑器的帮助下获得默认颜色:默认按钮NinePatch ..\android-sdk\platforms\android-13\data\res\drawable-hdpi 的路径

于 2012-11-04T22:25:06.857 回答