I Followed this To Capture Images from Webview and Upload
I got A page Reload Error After Capturing Image
After Adding this
if ((savedInstanceState == null)&&(URLUtil.isValidUrl(url)))
{
webView.loadUrl(url);
}
Its working fine in some Devices....
But for some devices I am getting That error My webpage is not responding After Capturing Image I am Getting Error net::ERR_CACHE_MISS
But In some Devices its working fine whether It may be android 5x
or 6x
its working fine And file is uploading with Default Camera Capture...
Please Help me on this kind
Update 1
I have Given it like this
if((savedInstanceState == null)) {
mWebView.loadUrl(url);
}
else {
mWebView.loadUrl("https://cdn3.iconfinder.com/data/icons/no-network-icons/512/No_Network_an-512.png");
}
So Here I understand Aftere Capture its not working It is Loading nothing now After Adding Else.... It is going to that link...
please Help me on this This error is comming in some devices only Remaning are working fine please help me