I have many views in an activity. I want to scroll from bottom to up in 5 seconds (or a specific time) how can I do that ? Also I tried the method below but I think this is not enough to do that.
myscrolview.post(new Runnable() {
@Override
public void run() {
myscrolview.fullScroll(View.FOCUS_DOWN);
}
});