Issue
My code:
WebView view = (WebView) findViewById(R.id.myWeb);
view.getSettings().setJavaScriptEnabled(true);
view.getSettings().setDomStorageEnabled(true);
view.loadUrl("https://www.test.com");
This code load website and links ( href ) works fine, but if in website used ajax request , not will works and not responding
Solution
Try this library
dependencies {
implementation'com.github.delight-im:Android-AdvancedWebView:v3.0.0'
}
Answered By - Abdullah Işık
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.