我创建了自定义对话框:
//generate dialog view
LayoutInflater layoutInflater = LayoutInflater.from(activity);
View dialogView = layoutInflater.inflate(R.layout.warning_dialog, null);
//create dialog instance
Dialog warningDlg = new Dialog(getActivity(), R.style.CustomAlertDialog); //my dialog style
warningDlg.requestWindowFeature(Window.FEATURE_NO_TITLE);
warningDlg.setContentView(dialogView);
warningDlg.show();
如上所述,当我创建对话框实例时,我使用自己的名为“CustomAlertDialog
”的样式,如下所示:
<style name="CustomAlertDialog" parent="@android:style/Theme.Dialog">
<item name="android:windowBackground">@drawable/my_dialog_bg</item>
</style>
除了在 Android 2.3.3 设备上显示 Android 2.3.3 设备时,我的对话框窗口中有白色边框,情况正常,如何删除白色边框我的上述代码?