我的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保持其库存样式。
这是alertdialog:
AlertDialog.Builder builder = new AlertDialog.Builder(context);
builder.setTitle("Wtitle").setMessage("message");
builder.setNeutralButton("ok", null);
builder.show();
有人可以帮忙吗?
答案 0 :(得分:0)
有工作解决方案 - 使用the documentation中描述的主题另一个AlertDialog.Builder
构造函数,想法基本上来自"How to change theme for AlertDialog":
你的styles.xml中有一个奇怪的事情:app主题定义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)。