我希望我的活动看起来像一个对话框。
嗯,我使用android:theme="@android:style/Theme.Dialog"
实现了这一点
现在,我也希望它在android:theme="@android:style/Theme.Translucent"
有没有办法将它们混合使用自定义样式? 请提出任何建议,谢谢
编辑:取得了类似的效果: 现在我想添加一个像dialogwindow一样的边框......我怎么能这样做?
<style name="TransparentDialog" parent="@android:style/Theme.Dialog">
<item name="android:windowBackground">@android:color/transparent</item>
<item name="android:windowFrame">@android:color/transparent</item>
<item name="android:windowContentOverlay">@null</item>
<item name="android:windowIsFloating">true</item>
<item name="android:backgroundDimEnabled">true</item>
<item name="android:windowIsTranslucent">true</item>
<item name="android:alertDialogStyle">@android:style/Theme.Dialog</item>
<item name="android:windowAnimationStyle">@android:style/Animation.Dialog</item>
</style>
编辑:解决了这个问题。检查答案
答案 0 :(得分:4)
终于实现了我想要的东西:
将此主题用于我的活动android:theme="@android:style/Theme.Translucent"
并将此android:background="@android:drawable/dialog_frame"
作为布局根元素的背景
那太容易了!
答案 1 :(得分:1)
您需要将两个主题组合在一起。可能有用的一件事是:
<style name="TranslucentDialog" parent="@android:style/Theme.Dialog">
<item name="android:background">"#33000000"</item>
</style>