【发布时间】:2015-02-25 21:55:35
【问题描述】:
我想使用以下代码滚动页面。我没有得到我错的地方。我正在使用这段代码
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
【问题讨论】:
标签: android