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

时间:2011-10-27 07:01:31

标签: android android-layout android-ui popupwindow

我正在尝试创建一个Android蜂窝状弹出窗口,如google docs应用程序我跟着this教程,我能够弹出窗口,但是如何将其作为模态窗口?如何创建像图像

中所示的边框效果

Screen shot of popup window

1 个答案:

答案 0 :(得分:8)

试试这个。

 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();