Removing Title in Android ApplicationIbrahim Ersoy14yPublished Oct 26, 2012, 12:00 AMUpdated Oct 26, 2012, 2:02 PM57600Reactions×25BlogIn onCreate function:Between ; super.onCreate(savedInstanceState);and setContentView(R.layout.activity_main); add these codes: //Remove title bar this.requestWindowFeature(Window.FEATURE_NO_TITLE); //Remove notification bar this.getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, WindowManager.LayoutParams.FLAG_FULLSCREEN);Reference: http://stackoverflow.com/questions/2591036/how-to-hide-the-title-bar-for-an-activity-in-xml-with-existing-custom-themeWorked for me ;)CommentsJoin the conversation! Your thoughts help the community grow.Sign in to leave a commentIt is the same account you read, post and publish with — and you will come straight back to this page.Sign inCreate an account
Join the conversation! Your thoughts help the community grow.