Android how to get AppCompat.Translucent type theme with support actionbar?
You can create a new set of styles to use which have the same properties as Theme.Translucent from themes.xml. Add the following to your styles.xml file: <style name=”Theme.AppCompat.Translucent”> <item name=”android:windowNoTitle”>true</item> <item name=”android:windowBackground”>@android:color/transparent</item> <item name=”android:colorBackgroundCacheHint”>@null</item> <item name=”android:windowIsTranslucent”>true</item> <item name=”android:windowAnimationStyle”>@android:style/Animation</item> </style> You can change the prefix Theme.AppCompat to something else if you want to inherit other things … Read more