Search code examples
androidandroid-webview

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

  • You can use JSOUP, like this:

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

    checkout this link