0

我的 style.xml 中有一些小自定义:

<style name="AppBaseTheme" parent="android:Theme.Holo.Light.NoActionBar"></style>

    <!-- Application theme. -->
    <style name="AppTheme" parent="AppBaseTheme">
        <item name="android:background">@color/light_grey</item>
        <item name="android:textColor">@color/white</item>
    </style>

现在样式已正确应用于我的活动。

但是当我创建一个警报对话框时,背景颜色会应用于对话框的标题和正文,这是我不想要的。我希望 alertdialog 保持其股票样式。

这是警报对话框:

AlertDialog.Builder builder = new AlertDialog.Builder(context);
            builder.setTitle("Wtitle").setMessage("message");
            builder.setNeutralButton("ok", null);
            builder.show();

任何人都可以帮忙吗?

4

1 回答 1

0

有一个可行的解决方案 - 使用文档AlertDialog.Builder中描述的另一个带有主题的构造函数,想法基本上来自这个“如何更改 AlertDialog 的主题”

  • 您的 styles.xml 中有一件奇怪的事情:应用主题定义android:background而不是android:windowBackground. 似乎没有理由这样做,因为如果您需要所有视图的相同背景(我怀疑这是可能的),那么您可以为视图设置一些基本主题。我认为,干扰应用程序主题和视图主题基本上不是一个好主意,因为应用程序需要完全不同的属性。所以,让我们如下:

    <resources>
        <style name="AppBaseTheme" parent="android:Theme.Holo.Light.NoActionBar"></style>
    
        <!-- Application theme. -->
        <style name="AppTheme" parent="AppBaseTheme">
            <item name="android:windowBackground">@color/light_grey</item>
            <item name="android:textColor">@color/white</item>
        </style>
    </resources>
    
  • Dialog Builder 应该使用它自己的主题创建:

    AlertDialog.Builder builder = new AlertDialog.Builder(new ContextThemeWrapper(this, android.R.style.Theme_Dialog));
    

    在这里请注意,由于某种原因,构造函数AlertDialog.Builder (Context context, int theme)没有正确执行它并且ContextThemeWrapper是必要的(似乎是因为并非所有属性都在主题中,并且仅使用 ContextThemeWrapper 才能“重新创建”主题)。

于 2013-07-26T06:23:23.010 回答