我有一个包含大量内容的滚动视图。现在,当用户进行投掷或向下滚动时,我希望滚动视图停在特定的视图位置,我正在做一些动画,然后用户可以再次投掷或向下滚动。
我已经尝试过禁用scrollview,如前面提到的here但它只会在滚动视图完全停止并且无法在投掷过程中停止时禁用。
当达到某个视图位置或某个y值时,有什么方法可以阻止滚动视图的投射?
答案 0 :(得分:8)
我的解决方案遇到了同样的问题。
listView.smoothScrollBy(0,0)
这将停止滚动。
答案 1 :(得分:3)
要停止特定点的投掷,只需致电
fling(0)
如果您只关心flings,这是我的opionon中最合理的方法,因为velosityY
设置为0,从而立即停止投掷。
这是fling方法的javadoc:
/**
* Fling the scroll view
*
* @param velocityY The initial velocity in the Y direction. Positive
* numbers mean that the finger/cursor is moving down the screen,
* which means we want to scroll towards the top.
*/
答案 2 :(得分:2)
一种方法可能是使用 smoothScrollToPosition ,它会停止任何现有的滚动动作。请注意,此方法需要API级别> = 8(Android 2.2,Froyo)。
请注意,如果当前位置远离所需位置,那么平滑滚动将花费相当长的时间并且看起来有点不稳定(至少在我对Android 4.4 KitKat的测试中)。我还发现调用setSelection和smoothScrollToPosition的组合有时会导致位置错过"稍微,这似乎只有在当前位置非常接近所需位置时才会发生。
在我的情况下,当用户按下按钮时,我希望我的列表跳转到顶部(位置= 0)(这与您的用例略有不同,因此您需要适应这符合你的需要)。
我使用以下方法
private void smartScrollToPosition(ListView listView, int desiredPosition) {
// If we are far away from the desired position, jump closer and then smooth scroll
// Note: we implement this ourselves because smoothScrollToPositionFromTop
// requires API 11, and it is slow and janky if the scroll distance is large,
// and smoothScrollToPosition takes too long if the scroll distance is large.
// Jumping close and scrolling the remaining distance gives a good compromise.
int currentPosition = listView.getFirstVisiblePosition();
int maxScrollDistance = 10;
if (currentPosition - desiredPosition >= maxScrollDistance) {
listView.setSelection(desiredPosition + maxScrollDistance);
} else if (desiredPosition - currentPosition >= maxScrollDistance) {
listView.setSelection(desiredPosition - maxScrollDistance);
}
listView.smoothScrollToPosition(desiredPosition); // requires API 8
}
在按钮的动作处理程序中,我将其调用如下
case R.id.action_go_to_today:
ListView listView = (ListView) findViewById(R.id.lessonsListView);
smartScrollToPosition(listView, 0); // scroll to top
return true;
以上并不直接回答您的问题,但如果您可以检测当前位置何时处于或接近您想要的位置,那么您可以使用 smoothScrollToPosition 来停止滚动。
答案 3 :(得分:1)
您需要禁用ScrollView
处理fling操作。要执行此操作,只需覆盖fling
中的ScrollView
方法并发表评论super.fling()
即可。如果有效,请告诉我!
public class CustomScrollView extends ScrollView {
@Override
public boolean onFling(MotionEvent e1, MotionEvent e2, float velocityX, float velocityY)
{
return false;
}
@Override
public void fling (int velocityY)
{
/*Scroll view is no longer gonna handle scroll velocity.
* super.fling(velocityY);
*/
}
}
答案 4 :(得分:1)
我正在努力实现类似的情况。我有一个部分解决方案:
我设法通过覆盖onScrollChanged
然后调用smoothScrollTo
来停止特定y坐标的ScrollView。我允许用户通过保持一个布尔值继续向下滚动超过该点,该布尔值指示这是否是第一个fling / drag。滚动从下到上也是如此 - 我再次停止滚动到同一点。然后允许用户继续向上滚动。
代码看起来像这样:
boolean beenThereFromTop = false;
boolean beenThereFromBottom = false;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
final ScrollView scrollView = (ScrollView) findViewById(R.id.scrollView);
scrollView.getViewTreeObserver().addOnScrollChangedListener(new ViewTreeObserver.OnScrollChangedListener() {
@Override
public void onScrollChanged() {
TextView whereToStop = (TextView) findViewById(R.id.whereToStop);
final int y = whereToStop.getBottom();
int scrollY = scrollView.getScrollY();
// manage scrolling from top to bottom
if (scrollY > y) {
if (!beenThereFromTop) {
beenThereFromTop = true;
scrollView.post(new Runnable() {
@Override
public void run() {
scrollView.smoothScrollTo(0, y);
}
});
}
}
if (scrollY < y && beenThereFromTop) {
beenThereFromTop = false;
}
// manage scrolling from bottom to top
if (scrollY < y) {
if (!beenThereFromBottom) {
beenThereFromBottom = true;
scrollView.post(new Runnable() {
@Override
public void run() {
scrollView.smoothScrollTo(0, y);
}
});
}
}
if (scrollY > y && beenThereFromBottom) {
beenThereFromBottom = false;
}
}
});
}
答案 5 :(得分:0)
我实际上正在使用这种方法:
list.post(new Runnable()
{
@Override
public void run()
{
list.smoothScrollToPositionFromTop(arg2, 150);
}
});