我在想有没有人能帮我一下。我试图创建一个自定义AlertDialog。为了做到这一点,我在styles.xml中添加了以下代码行

<resources>
 <style name="CustomAlertDialog" parent="android:Theme.Dialog.Alert">
  <item name="android:windowBackground">@drawable/color_panel_background</item>
 </style>
</resources>

Color_panel_background.9.png位于可绘制文件夹。这也可以在Android SDK res文件夹。

以下是主要活动。

package com.customdialog;

import android.app.Activity;
import android.app.AlertDialog;
import android.app.Dialog;
import android.content.DialogInterface;
import android.os.Bundle;

public class CustomDialog extends Activity {
    /** Called when the activity is first created. */
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);

        this.setTheme(R.style.CustomAlertDialog);
        AlertDialog.Builder builder = new AlertDialog.Builder(this);
        builder.setMessage("HELLO!");
        builder .setCancelable(false)
          .setPositiveButton("Yes", new DialogInterface.OnClickListener() {
           public void onClick(DialogInterface dialog, int id) {
               //MyActivity.this.finish();
           }
       })
       .setNegativeButton("No", new DialogInterface.OnClickListener() {
           public void onClick(DialogInterface dialog, int id) {
               //dialog.cancel();
           }
       });

        AlertDialog alertdialog = builder.create();
        alertdialog.show();
    }
}

为了将主题应用到AlertDialog,我必须将主题设置为当前上下文。

然而,我似乎不能让应用程序显示自定义的AlertDialog。有人能帮我一下吗?


当前回答

我想这是不可能的。至少不是和建造者。我正在使用1.6和Builder.create()中的实现是:

public AlertDialog create() {
    final AlertDialog dialog = new AlertDialog(P.mContext);
    P.apply(dialog.mAlert);
    [...]
}

它调用AlertDialog的“非主题感知”构造函数,看起来像这样:

protected AlertDialog(Context context) {
    this(context, com.android.internal.R.style.Theme_Dialog_Alert);
}

在AlertDialog中有第二个构造函数用于更改主题:

protected AlertDialog(Context context, int theme) {
    super(context, theme);
    [...]
}

建造者就是不叫。

如果Dialog非常通用,我会试着编写AlertDialog的子类,调用第二个构造函数并使用该类而不是生成器机制。

其他回答

它可以通过使用生成器的setView()简单地完成。您可以创建所选择的任何视图,并将其提供给构建器。这很有效。我使用一个自定义的TextView,由对话生成器呈现。我不设置消息和这个空间是用来渲染我的自定义textview。

我想这是不可能的。至少不是和建造者。我正在使用1.6和Builder.create()中的实现是:

public AlertDialog create() {
    final AlertDialog dialog = new AlertDialog(P.mContext);
    P.apply(dialog.mAlert);
    [...]
}

它调用AlertDialog的“非主题感知”构造函数,看起来像这样:

protected AlertDialog(Context context) {
    this(context, com.android.internal.R.style.Theme_Dialog_Alert);
}

在AlertDialog中有第二个构造函数用于更改主题:

protected AlertDialog(Context context, int theme) {
    super(context, theme);
    [...]
}

建造者就是不叫。

如果Dialog非常通用,我会试着编写AlertDialog的子类,调用第二个构造函数并使用该类而不是生成器机制。

任何试图在Fragment(使用支持库,即pre API 11)中做到这一点的人都应该这样做:

public class LoadingDialogFragment extends DialogFragment {
    public static final String ID = "loadingDialog";

    public static LoadingDialogFragment newInstance() {
        LoadingDialogFragment f = new LoadingDialogFragment();

        return f;
    }

    @Override
    public Dialog onCreateDialog(Bundle savedInstanceState) {
        StyleAlertDialog adb = new StyleAlertDialog(getActivity(), R.style.Your_Style);
        adb.setView(getActivity().getLayoutInflater().inflate(R.layout.fragment_dialog_layout, null));
        return adb;
    }

    private class StyleAlertDialog extends AlertDialog {
        protected StyleAlertDialog(Context context, int theme) {
            super(context, theme);
        }
    }
}

@Rflexor鼓励我扩展AlertDialog并公开构造函数

我不确定Arve的解决方案如何在自定义对话框中工作,其中视图通过LayoutInflator膨胀。

解决方案应该是通过cloneInContext()在充气器中插入ContextThemeWrapper:

View sensorView = LayoutInflater.from(context).cloneInContext(
     new ContextThemeWrapper(context, R.style.AppTheme_DialogLight)
).inflate(R.layout.dialog_fingerprint, null);

Arve Waltin的解决方案看起来不错,尽管我还没有测试过。还有另一个解决方案,以防你有麻烦,让它工作....延长AlertDialog。构建器和覆盖所有的方法(例如。setText, setTitle, setView等)不设置实际的对话框的文本/标题/视图,而是在对话框的视图中创建一个新的视图。然后你就可以随心所欲地设计一切了。

澄清一下,就父类而言,设置的是View,而不是其他。

就您的自定义扩展类而言,一切都在该视图中完成。