[android-developers] Re: WebView bug with pageDown() ?

2009-04-03 Thread pperotti
I did that also but if you invoke view.pageDown(true) inside onPageFinished(Webview view, STring url ) it produces the same behavior as explained before. The only way this method seems to work (producing a very poor user-experience) is by just invoking inside the onPageFinished something like the

[android-developers] Re: WebView bug with pageDown() ?

2009-04-02 Thread Mark Murphy
pperotti wrote: > Is there any way to be notified when a page has been completely loaded > using web view? Attach a WebViewClient to your WebView, and override onPageFinished() in the WebViewClient. -- Mark Murphy (a Commons Guy) http://commonsware.com | http://twitter.com/commonsguy Android A

[android-developers] Re: WebView bug with pageDown() ?

2009-04-02 Thread pperotti
That is what it means but if you pass "true" to the boolean argument it means that the page will be scrolled to the bottom. It seems that after invoking loadData(), the contents is moved to the bottom but once the web view has finished loading its data, the scroll is resetted to the top. Is there

[android-developers] Re: WebView bug with pageDown() ?

2009-04-01 Thread Romain Guy
pageDown() does not mean "scroll the web page to the bottom" it means "scroll down by one page." Just like the "page down" key on a computer keyboard. On Wed, Apr 1, 2009 at 9:33 PM, pperotti wrote: > > Hi Everyone, > > Does anybody know how can I sort out a problem with the > WebView.pageDown(