I am working in Android. I need to show my activity in Full screen mode, and i did this using following code.
getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,
WindowManager.LayoutParams.FLAG_FULLSCREEN);
Now its looking like this:-
Now I want to exit from this full mode so my activity should show as before. like this:-
I have a button which is used to switch between full mode or normal mode, i will switch mode again and again. Please suggest me how can i do this. Means how can get normal screen from full screen.
Thank you in advance.