我创建了自定义对话框:
//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设备上显示时我的对话框窗口上有白色边框外,一切都运行良好,如何使用上述代码删除白色边框?