'Remove the Navigation Bar in Webview

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 1:[1]

You can use JSOUP, like this:

 document= Jsoup.connect(url).get();
 document.getElementsByClass("main-navigation").remove();

checkout this link

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 Mahdi Iranmanesh