Questions tagged [webviewclient]

An Android class to intercept load requests, key events, and other events.

An Android class that is attached to a Webkit Webview to intercept load requests, key events, and other events.

Documentation: https://developer.android.com/reference/android/webkit/WebViewClient.html

321 questions
0
votes
1 answer

WebView load from file and from web

I have a webview which will load from file or from the web. I set the WebViewClient to the webview and i override function onPageFinished(WebView view, String url). Everytime the webview loads and finished, it will go to the function onPageFinished…
kyuu
  • 237
  • 3
  • 7
  • 15
-1
votes
1 answer

Android prevent time consuming loading of WebView

I used android 'WebView' to load the url content. The loading process is time consuming than that url loading in browser. Below is my code: actvitity_main.xml
-1
votes
5 answers

my application keeps receiving "Unfortunately "My App" has stopped" after Running the app

After Implementing a WebView Client my application keep receiving "Unfortunately "My App" has stopped" after Running the app. This is my maniefest
Mike
  • 149
  • 11
-1
votes
1 answer

Android webview looks different than PC browser

i loaded html contents having js form assets in Android webview.but there is much difference between how it looks in Android webview and PC browser. Also i had enable loadjavascript and used weviewclient but still having difference. Please suggest…
PrvN
  • 2,385
  • 6
  • 28
  • 30
-1
votes
1 answer

Android webview calls browser activity

I'm using webview in android and when I call loadURL it does a call to the browser activity I need to show the webcontent inside my own activity as I have other stuff to be viewed in it buttons, text, ,.. etc
Helal Ismail
  • 518
  • 1
  • 10
  • 22
-2
votes
1 answer

How can I solve WebViewClient breaking application?

I am trying to add a WebViewClient to my WebView application. But every time I try to start it with WebViewClient, it stops working. MainActivity.java public class MainActivity extends AppCompatActivity { private WebView myWebView; …
1 2 3
21
22