I am working on a project (using Android 2.2, API level 8) where I need to
load some data into a WebView. The data has some images pointing to a secure
server (img src="https://images"). I'm having problems rendering these images.
- I tried authenticating
WebViewusingwebView.setHttpAuthUsernamePassword(host, realm, username, password)and it did not work.
Is there any other way to authenticate HTTPS links within WebView?