Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.