Blog

How do I hide the toolbar on my Android?


How do I hide the toolbar on my Android? Calling the hide() method of ActionBar class hides the title bar.requestWindowFeature(Window.FEATURE_NO_TITLE);//will hide the title.getSupportActionBar().hide(); //hide the title bar. How do I…