I want to be able to autoscroll the page. Below is my method.
public class MainActivity extends Activity {
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
WebView wv = (WebView) findViewById(R.id.webView1);
wv.loadUrl("file:///android_asset/1.html");
}
}
Edit: I don't want it to auto scrolled all the way to the bottom or top I want to autoscroll with speed so it goes to the bottom slowly.