webview with full screen in android

2020-05-27 11:18发布

问题:

i have made a simple hello web view example and i want to make it in full screen like i do not want that two top most black bars. anybody have any idea how to do that?

thanks a lot.

回答1:

The quickest way to do this would be to add

android:theme="@android:style/Theme.NoTitleBar.Fullscreen"

Into your activity in the AndroidManifest.xml file



回答2:

Alternatively you can do it programmatically in the OnCreate method of your Activity :

//Full screen
requestWindowFeature(Window.FEATURE_NO_TITLE); 
this.getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, WindowManager.LayoutParams.FLAG_FULLSCREEN);