I want to scroll a page using the following code. I am not getting where i am wrong. I am using this piece of code
scroll = (ScrollView)findViewById(R.id.scroll);
scroll.post(new Runnable() {
@Override
public void run() {
// TODO Auto-generated method stub
scroll.fullScroll(ScrollView.FOCUS_DOWN);
}
});
when i run this code it is not scrolling