After adding data using ajax the webview does not scroll to bottom although it scrolls in pc browser. Here is my webview settings:
WebSettings webSettings = webReview.getSettings();
webSettings.setJavaScriptEnabled(true);
webSettings.setJavaScriptCanOpenWindowsAutomatically(false);
webSettings.setPluginState(PluginState.ON);
webSettings.setSupportMultipleWindows(false);
webSettings.setSupportZoom(false);
webReview.setVerticalScrollBarEnabled(true);
webReview.setHorizontalScrollBarEnabled(false);
webReview.addJavascriptInterface(new JavaScriptInterface(this), "Android");
webReview.loadUrl(url);
webReview.scrollTo(webReview.getWidth(),webReview.getHeight() );
after loading data using ajax i am trying to scroll using :
//Auto-scroll
$("#result").animate({scrollTop:$("#result")[0].scrollHeight}, 1000);
//parent.frames['SendMsgFrom'].messageForm.message.focus();
//$(window).scrollTop($(document).height());
//$("#message").focus();
window.location.hash = '#bottom';
Nothing works in android web view to scroll to bottom after loading the data using ajax. How to scroll the div/ frame using javaScript after loading data using ajax?
Its very urgent.