有人可以让这个自定义AlertDialog实际工作吗?

时间:2011-10-20 10:00:37

标签: android alertdialog

我问了另一个关于自定义AlertDialog here的问题。

然后我点击了这个自定义AlertDialog(找到here)的方式:

import android.app.AlertDialog;
import android.content.Context;
import android.webkit.WebView;

/**
 * Display a simple about dialog.
 */
public class AboutDialog extends AlertDialog {

    protected AboutDialog(Context context) {
        super(context);
        setContentView(R.layout.about_dialog);

        setTitle(R.string.about_title);
        setCancelable(true);

        WebView webView = (WebView) findViewById(R.id.webview);
        webView.loadData("Written by Cédric Beust (<a href=\"mailto:cedric@beust.com\">cedric@beust.com)", "text/html", "utf-8");
    }

}

我这样修改过:

import android.app.AlertDialog;
import android.content.Context;
import android.webkit.WebView;

/**
 * Display a simple about dialog.
 */
public class AboutDialog extends AlertDialog {

    protected AboutDialog(Context context) {
        super(context);
        setTitle("Test");
        setCancelable(true);
        setContentView(R.layout.paus);
    }
}

然后尝试使用它,就像这样:

AboutDialog ad = new AboutDialog(getApplicationContext());
ad.show();

但是我收到了这个错误:

android.util.AndroidRuntimeException: requestFeature() must be called before adding content
    at com.android.internal.policy.impl.PhoneWindow.requestFeature(PhoneWindow.java:181)
    at com.android.internal.app.AlertController.installContent(AlertController.java:206)
    at android.app.AlertDialog.onCreate(AlertDialog.java:251)
    at android.app.Dialog.dispatchOnCreate(Dialog.java:307)
    at android.app.Dialog.show(Dialog.java:225)
    at TestPackage.MainActivity$5.onClick(MainActivity.java:382)
    at android.view.View.performClick(View.java:2538)
  etc...

所以我想知道为什么会这样。

=====================编辑========================= = 0

根据以下建议,我修改了代码,使其如下所示:

import android.app.AlertDialog;
import android.content.Context;
import android.os.Bundle;
import android.webkit.WebView;

/**
 * Display a simple about dialog.
 */
public class AboutDialog extends AlertDialog {

    protected AboutDialog(Context context) {
        super(context);
    }

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        // TODO Auto-generated method stub
        super.onCreate(savedInstanceState);
        setContentView(R.layout.paus);

    }
}

但我得到了 BadTokenException

3 个答案:

答案 0 :(得分:0)

必须在setTitle()...

之前调用setContentView()

答案 1 :(得分:0)

覆盖了altertdialog的create方法,并在重写方法oncreate中调用以下方法

 setContentView(R.layout.paus);

这将解决您的问题。

答案 2 :(得分:0)

为什么不在R.layout.param中添加标题(文本视图),还可以添加按钮,然后显示所有内容