对话框看起来像这样.对话框后面有一层大约10-20像素左右.我使用的主题是Theme.Holo.Dialog
我尝试创建一个透明背景的自定义对话框,但没有工作:
<style name="CustomHoloDialog" parent="@android:style/Theme.Holo.Dialog"> <item name="android:background">@android:color/transparent</item> </style>
有人有什么想法吗?
解决方法
如果要对对话框进行风格化,那么您必须使用ContextThemeWrapper:
AlertDialog.Builder mBuilder = new AlertDialog.Builder(new ContextThemeWrapper(context,android.R.style.Theme_Holo_Dialog));