How to Remove Title Bar from Activity XML

Asked 2 years ago, Updated 2 years ago, 130 views

I want to hide the title bar from the activity. I applied style to all activities If you use @android:style/theme.NoTitleBar, the title bar disappears I can't use that. Is there any other way?

android-layout android titlebar

2022-09-22 12:43

1 Answers

In the onCreate() activity that you want to get rid of,

 //Remove Title Bar 
    this.requestWindowFeature(Window.FEATURE_NO_TITLE);

    //Remove Notification Bar 
    this.getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, WindowManager.LayoutParams.FLAG_FULLSCREEN);

    //Apply View
    this.setContentView(R.layout.your_layout_name_here); 

I think you can do it.


2022-09-22 12:43

If you have any answers or tips


© 2024 OneMinuteCode. All rights reserved.