1

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

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>

但是,我得到:

在此处输入图像描述

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

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

4

0 回答 0