Window window = alertDialog.getWindow();
window.setBackgroundDrawable(new BitmapDrawable());
给个空背景
AlertDialog alertDialog = new AlertDialog.Builder(this).create();
//去掉白边
Window window = alertDialog.getWindow();
window.setBackgroundDrawable(new BitmapDrawable());
alertDialog.show();