微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

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

@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?

解决方法

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

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐