HorizontalScrollView SmoothScrollTo не работает

Я расширил класс HorizontalScrollView для реализации определенного поведения. Под LinearLayout внутри моего CustomHorizontalScrollView у меня есть только 2 дочерних представления (скажем, ImageView). Когда пользователь прокручивает более 50% в одном направлении, я хочу, чтобы мой CustomHorizontalScrollView автоматически прокручивался до конца того же направления. Вот как я это реализовал:
CustomHorizontalScrollView class:

    public class CustomHorizontalScrollView extends HorizontalScrollView {

    private static float downCoordinates = -1;
    private static float upCoordinates = -1;
    private static int currentPosition = 0;

    public CustomHorizontalScrollView(Context ctx) {
        super(ctx);
    }

    public CustomHorizontalScrollView(Context ctx, AttributeSet attrs) {
        super(ctx, attrs);
    }

    @Override
    public boolean onTouchEvent(MotionEvent ev) {
        if (ev.getAction() == MotionEvent.ACTION_DOWN && downCoordinates == -1) {
            downCoordinates = ev.getX();
        }
        else if (ev.getAction() == MotionEvent.ACTION_UP && upCoordinates == -1) {
            upCoordinates = ev.getX();
            int scrollViewWidth = this.getMeasuredWidth();
            double dist = downCoordinates - upCoordinates; 
            if (Math.abs(dist) > scrollViewWidth / 2) {
                //this.setSmoothScrollingEnabled(true);
                // Going forwards
                if (dist > 0) {
                    int max = ((LinearLayout)this.getChildAt(0)).getChildAt(1).getMeasuredWidth();
                    currentPosition = max;
                    this.scrollTo(max, 0);
                }
                // Going backwards
                else {
                    currentPosition = 0;
                    this.scrollTo(0, 0);
                }
            }
            // reseting the saved Coordinates
            downCoordinates = -1;
            upCoordinates = -1;
        }
        return super.onTouchEvent(ev);
    }
}

Пока здесь - все работает. Дело в том, что я хочу, чтобы автоматическая прокрутка выполнялась плавно, поэтому я попытался использовать функцию smoothScrollTo вместо функции scrollTo, но тогда ничего не происходит (как и при отсутствии автоматической прокрутки). я пытался объявить это:

this.setSmoothScrollingEnabled(true);

но тоже безуспешно.


person Mr T.    schedule 30.05.2013    source источник


Ответы (2)


Вы пробовали это?

    this.post(new Runnable() { 
        public void run() { 
             this.smoothScrollTo(0, this.getBottom());
        } 
});
person Basim Sherif    schedule 30.05.2013

Это все еще не работает для меня, поэтому я узнаю, что мне нужно после этой строки

this.smoothScrollTo(0, this.getBottom());

Добавь это

this.invalidate();
person HugoMasterPL    schedule 13.11.2013