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.
精彩评论