java - Android WebView scroll to bottom -
i seek scroll downwards page have in webview. hence found function .pagedown(true). problem function not work me. not anything.
codesnippet:
wvchat.loaddata(chat_, "text/html; charset=utf-8", "utf-8"); wvchat.setwebviewclient(new webviewclient() { public void onpagefinished(webview view, string url) { wvchat.pagedown(true); } }); is there method or wrong utilize in onpagefinished?
get html content height , utilize scrollto(x,y)
wvchat.loaddata(chat_, "text/html; charset=utf-8", "utf-8"); wvchat.setwebviewclient(new webviewclient() { @override public void onpagefinished(webview view, string url) { //use param "view", , phone call getcontentheight in scrollto view.scrollto(0, view.getcontentheight()); } }); java android webview scroll
No comments:
Post a Comment