Remove title bar in your Android App
To remove the title bar in your android app, add the following in your
Activity’s onCreate() method.
protected void onCreate(Bundle savedInstanceState){
this.requestWindowFeature(Window.FEATURE_NO_TITLE);
}
Reference: