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>
source share