0

我正在使用九个补丁 png 作为 Android 应用程序的 windowBackground。但是,我在 ActionBar 周围有一个 1px 的边框。当我使用简单的 png 时,这不会发生。

为了测试这一点,我使用向导创建了一个基本应用程序:

  • 安卓:m​​inSdkVersion="10"
  • 安卓:targetSdkVersion="17"
  • 在 Galaxy Nexus v.4.2.2 上测试

有趣的是,Eclipse 中的 XML 布局预览显示了相同的边框。

/res/values/styles.xml

<resources>

    <!--
        Base application theme, dependent on API level. This theme is replaced
        by AppBaseTheme from res/values-vXX/styles.xml on newer devices.
    -->
    <style name="AppBaseTheme" parent="android:Theme.Light">
        <!--
            Theme customizations available in newer API levels can go in
            res/values-vXX/styles.xml, while customizations related to
            backward-compatibility can go here.
        -->
    </style>

    <!-- Application theme. -->
    <style name="AppTheme" parent="AppBaseTheme">
        <!-- All customizations that are NOT specific to a particular API-level can go here. -->

        <item name="android:windowBackground">@drawable/test4</item>
    </style>

</resources>

比较效果的两张截图(不,这不是真实背景,只是用于测试的一张 :-) 如您所见,ActionBar 一直插入 1px。

添加 - 我尝试了一个手动创建的 9patch 和一个使用 Google 的 draw9patch 工具。

使用 9-patch 背景 使用简单的 png 作为背景 9-patch png

4

0 回答 0