How to combine two themes in android

Can someone tell me how to combine the two theme values ​​(Ex: @android:style/Theme.Dialog and @android:style/Theme.NoTitleBar ) for the android:theme attribute in the manifest file.

Thanks,
Venu

+4
source share
2 answers

The solution is to create a custom theme. I created a custom theme to combine both @android:style/Theme.Dialog and @android:style/Theme.NoTitleBar , as shown below: <style parent="android:style/Theme.Dialog" name="Theme.NoTitleBar.Dialog"> <item name="android:windowNoTitle">true</item> </style>

+2
source

Try something like this:

  android:theme="@android:style/Theme.NoTitleBar.Fullscreen" 
+1
source

All Articles