Issue
So I want to load only the body of the html and I want to remove the Navigation Bar. Is it possible to remove navigation bar of the website in WebView?
Solution
You can use JSOUP, like this:
document= Jsoup.connect(url).get();
document.getElementsByClass("main-navigation").remove();
checkout this link
Answered By - Mahdi Iranmanesh
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.