Issue
can someone give me an example how to view only a part of a website? I know how to load a website with webview, but as i said i only want to load the table(Link)
Thanks in advance,
Solution
Lets try this...
public class WebClient extends WebViewClient {
@Override
public boolean shouldOverrideUrlLoading(WebView view, String url) {
view.loadUrl(url);
return true;
}
@Override
public void onPageFinished(WebView view, String url) {
view.loadUrl("javascript:document.getElementByClassName('example')");
}
}
have a look at thisLink
Answered By - user1724537
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.