0

我在 android 中使用自定义标头。问题是当活动加载大约 1 秒时,会显示默认的棕色/黑色标题。我该如何防止这种情况发生?

相关xml:

<resources>
    <style name="CustomWindowTitleBackground">
        <item name="android:background">#00693331</item>
    </style>

    <style name="CustomTheme" parent="android:Theme">
        <item name="android:windowTitleSize">70dip</item>
        <item name="android:windowTitleBackgroundStyle">@style/CustomWindowTitleBackground</item>

    </style>
</resources>

我正在夸大java中的布局。

4

1 回答 1

0

我们通过最初将主题设置为:

android:theme="@android:style/Theme.NoTitleBar"

我们为整个应用程序设置它,然后在活动中使用我们的自定义标题栏主题覆盖它。

于 2013-03-04T14:03:18.620 回答