如何在android中创建弹出模式窗口

发布于 2024-12-12 07:04:48 字数 229 浏览 0 评论 0原文

我正在尝试为 android honeycomb 创建一个弹出窗口,例如 google docs 应用程序,我按照这个教程,我能够弹出窗口,但是如何使其成为模态窗口?如何创建如图所示的边框效果

弹出窗口的屏幕截图

I am trying to create a popup window for android honeycomb like google docs application I followed this tutorial, I am able to get popup, but how to make it as modal window? How to create border effects like the one shown in image

Screen shot of popup window

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

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

发布评论

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

评论(1

梦回旧景 2024-12-19 07:04:48

试试这个。

 Dialog d = new AlertDialog.Builder(Buddies.this,AlertDialog.THEME_HOLO_LIGHT)
                    .setTitle("Create New")
                    .setNegativeButton("Cancel", null)
                    .setItems(new String[]{"Document", "SpreadSheet","",""}, new DialogInterface.OnClickListener(){
                        @Override
                        public void onClick(DialogInterface dlg, int position) 
                        {
                            if ( position == 0 )
                            {   
                            }
                            else if(position == 1){

                            }
                            else if(position == 2){


                            }

                        }
                    })
                    .create();
                    d.show();

Try this.

 Dialog d = new AlertDialog.Builder(Buddies.this,AlertDialog.THEME_HOLO_LIGHT)
                    .setTitle("Create New")
                    .setNegativeButton("Cancel", null)
                    .setItems(new String[]{"Document", "SpreadSheet","",""}, new DialogInterface.OnClickListener(){
                        @Override
                        public void onClick(DialogInterface dlg, int position) 
                        {
                            if ( position == 0 )
                            {   
                            }
                            else if(position == 1){

                            }
                            else if(position == 2){


                            }

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