I know this question has been asked for a million times. But none of the answers helped me.
Every time I want to remove the TITLE BAR on MainActivity which extends ActionBarActivity, my application crashes or nothing happens. I have tried everything I could - changed AndroidManifest settings, added:
requestWindowFeature(Window.FEATURE_NO_TITLE);
and
supportRequestWindowFeature(Window.FEATURE_NO_TITLE);
getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,
WindowManager.LayoutParams.FLAG_FULLSCREEN);
in any possible way into the onCreate
method. But nothing seems to work properly. I really hope somebody has an answer because it is getting really frustrating.