有人可以帮助我找到主题Holo
相当于
@android:style/Theme.Translucent.NoTitleBar
我尝试使用
@android:style/Theme.Holo.DialogWhenLarge.NoActionBar
但它不是半透明的。
答案 0 :(得分:9)
我认为定义自己的主题比使用Theme.Holo.Dialog更好,因为它启用了windowIsFloating。这样的事情会更好。
<style name="CustomActTheme" parent="@android:style/Theme.Holo">
<item name="android:windowIsTranslucent">true</item>
<item name="android:windowBackground">@android:color/transparent</item>
<item name="android:windowContentOverlay">@null</item>
<item name="android:windowNoTitle">true</item>
<item name="android:backgroundDimEnabled">true</item>
<item name="android:windowFullscreen">true</item>
</style>
答案 1 :(得分:8)
得到它: - )
@android:style/Theme.Holo.Dialog