我想创建并显示自定义对话框:
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>
但是,我得到了:
如果你仔细观察,你会发现视图周围有一个深灰色的边框,而且,因为角是圆的,所以有一个小的黑色空间,其中有一个矩形角。
我怎样才能摆脱这一切?我试过玩主题等等,但到目前为止无济于事。谢谢!