我正在尝试创建一个Android蜂窝状弹出窗口,如google docs应用程序我跟着this教程,我能够弹出窗口,但是如何将其作为模态窗口?如何创建像图像
中所示的边框效果
答案 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();