Can so开发者_运维百科meone please tell me how to combine two theme values(Ex:@android:style/Theme.Dialog
and @android:style/Theme.NoTitleBar
) for android:theme
attribute in manifest file.
Thanks,
venuThe solution is to create custom theme. I created a custom theme to combine both @android:style/Theme.Dialog
and @android:style/Theme.NoTitleBar
as below
<style parent="android:style/Theme.Dialog" name="Theme.NoTitleBar.Dialog">
<item name="android:windowNoTitle">true</item>
</style>
Try something like this:
android:theme="@android:style/Theme.NoTitleBar.Fullscreen"
精彩评论