Can someone explain to me the role of flags in functions like setFlags? What exactly does this word mean in this situation ...?
My example
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
requestWindowFeature(Window.FEATURE_NO_TITLE);
getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, WindowManager.LayoutParams.FLAG_FULLSCREEN);
setContentView(new RenderView(this));
}
I would like to know what setFlags are used for?
I read the API documentation, but I did not understand this.
source
share