dialog.getWindow()在创建对话框后返回null

时间:2011-09-23 00:46:46

标签: android

@Override
protected Dialog onCreateDialog(int id) {
    Dialog dialog = null;
    switch(id) {
    case DIALOG_ID:
        LayoutInflater inflater = getLayoutInflater();
        View InfoLayout = inflater.inflate(R.layout.info_dialog, null);
        AlertDialog.Builder b = new AlertDialog.Builder(MyActivity.this)
                .setView(InfoLayout );
        initInfoDialog(dialog);
        return dialog;
...

private void initInfoDialog(Dialog dialog) {
    //this line has the null pointer 
    WindowManager.LayoutParams lp = dialog.getWindow().getAttributes(); 

为什么dialog.getWindow()在这种情况下返回null?

1 个答案:

答案 0 :(得分:3)

我遇到了同样的问题,我现在看到getWindow()文档实际上是在说明原因(不是原因,而是为什么在这个特定点)。您可以在致电show()后检索窗口。