I have a webview pat of my activity layout I have a button "fullscreen" On clicking this i want the webview to occupy the full screen.
I have tried elativeLayout.LayoutParams params = new RelativeLayout.LayoutParams(RelativeLayout.LayoutParams.WRAP_CONTENT, RelativeLayout.LayoutParams.FILL_PARENT); webview.setLayoutParams(params);
But with this, 1. the button "fullscreen" that is specified to be aligned to bottom is still visible
- how can i get the minimised view back , If i click "back" arrow it goes to previous activity
Is there any other way to get full screen dynamically