Android自定义AlertDialog

效果图:


Android自定义AlertDialog_第1张图片
popupwindow.png

新建一个AlertDialog,并在setContentView方法加入你想要显示的布局.

AlertDialog dialog = new AlertDialog.Builder(context).create();
dialog.show();
Window window = dialog.getWindow();
window.setContentView(R.layout.popup_window);

弹出的布局文件popup_window:




    

        

        

        

        

        

        

        
    

你可能感兴趣的:(Android自定义AlertDialog)