如何从自定义对话框中删除边框和黑色空格?

时间:2013-01-25 15:59:28

标签: android android-dialog android-theme

我想创建并显示自定义对话框:

AlertDialog dialog=new AlertDialog.Builder(this,R.style.BubbleDialog).create();
dialog.setView(detailsView,0,0,0,0);
dialog.show();

这就是风格:

<style name="BubbleDialog" parent="@android:style/Theme.Dialog">
    <item name="android:windowBackground">@android:color/transparent</item>
</style>

但是,我得到了:

enter image description here

如果你仔细观察,你会发现视图周围有一个深灰色的边框,而且,因为角是圆的,所以有一个小的黑色空间,其中有一个矩形角。

我怎样才能摆脱这一切?我试过玩主题等等,但到目前为止无济于事。谢谢!

0 个答案:

没有答案