自定义对话框不显示

发布于 2024-12-11 04:27:47 字数 594 浏览 2 评论 0原文

showDialog( DIALOG_CREATEPC ); // called elsewhere

private Dialog addPCDialog()
{
   final Dialog dialog = new Dialog( this );

   dialog.setContentView( R.layout.party_createpc );
   dialog.setTitle( "Add PC" );
   ...
   return dialog
}

@Override
protected Dialog onCreateDialog( int id )
{       
    Dialog dialog;
        switch( id )
        {
            case DIALOG_CREATEPC:
                dialog = addPCDialog();
                break;
            default:
                dialog = null;
        }
        return dialog;
    }

我在这里错过了什么吗?该对话框根本不显示。

showDialog( DIALOG_CREATEPC ); // called elsewhere

private Dialog addPCDialog()
{
   final Dialog dialog = new Dialog( this );

   dialog.setContentView( R.layout.party_createpc );
   dialog.setTitle( "Add PC" );
   ...
   return dialog
}

@Override
protected Dialog onCreateDialog( int id )
{       
    Dialog dialog;
        switch( id )
        {
            case DIALOG_CREATEPC:
                dialog = addPCDialog();
                break;
            default:
                dialog = null;
        }
        return dialog;
    }

Am I missing something here? The dialog just doesn't show at all.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

燕归巢 2024-12-18 04:27:47

尝试覆盖 onPrepareDialog 而不是 onCreateDialog

http:// androidzteam.com/wpv/?p=44

try overriding onPrepareDialog instead of onCreateDialog

http://androidzteam.com/wpv/?p=44

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文