更改弹出对话框的背景颜色

问题描述 投票:36回答:9

我编写了一个显示弹出对话框的android代码,但是我想将背景颜色从黑色更改为白色,然后是写入的颜色。

这是对话框的代码:

mPrefs = PreferenceManager.getDefaultSharedPreferences(this);

    Boolean welcomeScreenShown = mPrefs.getBoolean(welcomeScreenShownPref, false);

    if (!welcomeScreenShown) {


        String whatsNewText = getResources().getString(R.string.Text);
        new AlertDialog.Builder(this).setMessage(whatsNewText).setPositiveButton(
                R.string.ok, new DialogInterface.OnClickListener(){
            public void onClick(DialogInterface dialog, int which) {
                dialog.dismiss();
            }
        }).show();
        SharedPreferences.Editor editor = mPrefs.edit();
        editor.putBoolean(welcomeScreenShownPref, true);
        editor.commit(); // Very important to save the preference
    }
android background-color
9个回答
55
投票

如果您只想要一个浅色主题而不是特定颜色,那么您可以将主题ID传递给AlertDialog.Builder构造函数。

AlertDialog.Builder(this, AlertDialog.THEME_HOLO_LIGHT)...

要么

AlertDialog.Builder(this, AlertDialog.THEME_DEVICE_DEFAULT_LIGHT)...

71
投票

要扩展@DaneWhite的答案,您不必依赖内置主题。您可以轻松提供自己的风格:

<style name="MyDialogTheme" parent="Theme.AppCompat.Light.Dialog.Alert">
    <item name="android:background">@color/myColor</item>
</style>

然后将其应用于Builder构造函数:

AlertDialog alertDialog = new AlertDialog.Builder(getContext(), R.style.MyDialogTheme)
        ...
        .create();

无论您使用的是android.support.v7.app.AlertDialog还是android.app.AlertDialog,这都应该有效

这也比@ DummyData的答案更好,因为你没有调整对话框的大小。如果设置窗口的背景可绘制,则覆盖一些现有的尺寸信息并获得非标准宽度的对话框。

如果你在主题上设置背景并在对话框上设置主题,你最终会得到一个对话框,它会按照你想要的颜色,但仍然是正确的宽度。


28
投票

归功于Sushil

像往常一样创建AlertDialog:

AlertDialog.Builder dialog = new AlertDialog.Builder(getContext());
Dialog dialog = dialog.create();
dialog.show();

在对话框上调用show()后,设置背景颜色如下:

dialog.getWindow().setBackgroundDrawableResource(android.R.color.background_dark);

10
投票

对于任何名为myDialog的对话框,在调用myDialog.show();后,您可以调用:

myDialog.getWindow().getDecorView().getBackground().setColorFilter(new LightingColorFilter(0xFF000000, CUSTOM_COLOR));

其中CUSTOM_COLOR是8位十六进制格式,例如。 0xFF303030。这里,FF是alpha值,其余是十六进制的颜色值。


2
投票

要更改应用中所有对话框和弹出窗口的背景颜色,请使用colorBackgroundFloating属性。

<style name="MyApplicationTheme" parent="@style/Theme.AppCompat.NoActionBar">
...
<item name="colorBackgroundFloating">
    @color/background</item>
<item name="android:colorBackgroundFloating" tools:targetApi="23">
    @color/background</item>
...
</style>

文档:

colorBackgroundFloating


1
投票

您可以创建自定义alertDialog并使用xml布局。在布局中,您可以设置背景颜色和文本颜色。

像这样的东西:

Dialog dialog = new Dialog(this, android.R.style.Theme_Translucent_NoTitleBar);
LayoutInflater inflater = (LayoutInflater)ActivityName.this.getSystemService(LAYOUT_INFLATER_SERVICE);
View layout = inflater.inflate(R.layout.custom_layout,(ViewGroup)findViewById(R.id.layout_root));
dialog.setContentView(view);

1
投票

我要更改对话框按钮和背景颜色,您需要扩展Dialog主题,例如:

<style name="MyDialogStyle" parent="android:Theme.Material.Light.Dialog.NoActionBar">
    <item name="android:buttonBarButtonStyle">@style/MyButtonsStyle</item>
    <item name="android:colorBackground">@color/white</item>
</style>

<style name="MyButtonsStyle" parent="Widget.AppCompat.Button.ButtonBar.AlertDialog">
    <item name="android:textColor">@color/light.blue</item>
</style>

之后,您需要将此自定义样式传递给对话框构建器,例如。像这样:

AlertDialog.Builder(requireContext(), R.style.MyDialogStyle)

如果要更改对话框中文本的颜色,可以将自定义视图传递给此Builder:

AlertDialog.Builder.setView(View)

要么

AlertDialog.Builder.setView(@LayoutResource int)

-2
投票

在警报对话框构建器上使用setInverseBackgroundForced(true)来反转背景。


-5
投票

只更新您的导入。

import android.app.AlertDialog;

import android.support.v7.app.AlertDialog;

它将被修复。

© www.soinside.com 2019 - 2024. All rights reserved.