How do I make an activity full screen? I mean without the notification bar. Any ideas?
First you must to set you app theme with "NoActionBar" like below
Then add these lines in your fullscreen activity.
public class MainActiviy extends AppCompatActivity {
@Override
public 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.main);
}
}
It will hide actionbar/toolbar and also statusbar in your fullscreen activity