开发者

Preventing the display of the URL/GoTo line at the top of the screen

开发者 https://www.devze.com 2023-03-18 05:35 出处:网络
I have almost got WebView working the way I want. The only thing left to resolve is to not display the URL/GoTo line at the top of the screen

I have almost got WebView working the way I want. The only thing left to resolve is to not display the URL/GoTo line at the top of the screen I have :-

 <activity android:name=".HelloGoogleMaps" android开发者_高级运维:label="@string/app_name"
 android:theme="@android:style/Theme.NoTitleBar.Fullscreen">

in my xml but still that row shows. Can someone tell me how to get rid of it?


The trick, if it is a trick, is not to allow redirection. Do mWebView.loadUrl("http://www.stockton.co.za/zars/index.html"); rather than mWebView.loadUrl("http://www.stockton.co.za/zars");

Thanks for the help.

0

精彩评论

暂无评论...
验证码 换一张
取 消