How to hide the title bar for an Activity in XML with existing custom theme
If you want to hide the title bar from android activity then use following code in oncreate method of activity.
@Override
protected void onCreate(Bundle
savedInstanceState) {
super.onCreate(savedInstanceState);
requestWindowFeature(Window.FEATURE_NO_TITLE);
this.getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,
WindowManager.LayoutParams.FLAG_FULLSCREEN);
setContentView(R.layout.temp);
}
NovaRadix Android Application Development TeamNovaRadix Technology
WWW.NOVARADIX.COM
getWindow().getDecorView().setSystemUiVisibility(View.GONE);
ReplyDeleteTry this,It will work