In my application I want to use the Theme.NoTitleBar, but on the other hand I also don\'t want to loose the internal Theme of the Android OS.. I searched on the net and Foun
Why are you changing android os inbuilt theme.
As per your activity Require You have to implements this way
this.requestWindowFeature(Window.FEATURE_NO_TITLE);
as per @arianoo says you have to used this feature.
@arianoo
I think this is better way to hide titlebar theme.