I have a WebView rendering content via loadURL. I am trying to
implement a bookmarking system, so I can go back to a given url/y
Position pair. I am attempting to do this via scrollTo. It works if
the page is already loaded, however if it is not loaded yet The
WebView does not scroll. I am sure I am mising something with the
order in which things rendered/etc. Has anyone been able to do this
successfully ?

My code is as follows:

        wv.loadUrl(pageURL);
        //wv.refreshDrawableState();
        wv.scrollTo(0,yPos);
        //wv.invalidate();

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Reply via email to