Android Holo对话框有2个背景相互层叠的背景

前端之家收集整理的这篇文章主要介绍了Android Holo对话框有2个背景相互层叠的背景前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
对话框看起来像这样.对话框后面有一层大约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));
原文链接:https://www.f2er.com/android/311874.html

猜你在找的Android相关文章