如何去除dialog默认黑色边框

1.style.xml(设置样式):


 
2.代码中设置style:
Dialog dialog = new Dialog(context , R.style.MyDialog);
dialog .setContentView(myView);
dialog .setCanceledOnTouchOutside(true);
dialog .show();

你可能感兴趣的:(androidUI)