如何滚动到视图中的所需位置?

时间:2013-07-17 16:44:51

标签: android button view scrollview

由于我的ScrollView很长,并且用户需要向下滚动很长时间才能到达所需的TableLayout,我想问一下,如果我设计了一个按钮,那么当它是按下,它会自动向下滚动到所需的TableLayout位置吗?

我不知道技术术语中的名称是什么。有人能告诉我如何实现它吗?会有代码示例吗?非常感谢提前!

1 个答案:

答案 0 :(得分:0)

请参阅Can I scroll a ScrollView programmatically in Android?

在您的活动中:

Button b = (Button) findViewById(R.id.button1);
b.setONClickListener(new Button.OnCLickListener() {
    public void onClick(View v) {
        myScrollView.scrollTo(0, y_index);
    }
});