In my android webview my webpage is loading even without internet because of cache, so i want to disable cache in android webview, can anyone help me how to do this?
Just after creating your webview, before loading any pages, you can clear the cache.
myBrowser.clearCache(true) - the boolean indicates if you wish to delete the cached files on disk as well.
myBrowser.clearCache(true)
The documentation is here if you wish to dig further.