Android smoothScrollToPosition не работает должным образом - PullRequest
0 голосов
/ 01 марта 2019

Я использую эту функцию для прокрутки к выбранной позиции внутри горизонтального обзора переработчика.Проблема в том, что, если я прокручиваю утилиту и затем нажимаю на элемент, он не переходит в центр представления.Вместо этого, если я не прокручиваю утилизатор, это работает.Я использую этот метод, когда я нажимаю на элемент.Позиция является адаптером Position.

override fun scrollToSelected(position: Int, isLeftScroll: Boolean) {
if(!isLeftScroll || position == 0) contactRV.layoutManager?.smoothScrollToPosition(contactRV, RecyclerView.State(), position +1)
    else contactRV.layoutManager?.smoothScrollToPosition(contactRV, RecyclerView.State(), position-1)

Что я должен сделать, чтобы решить эту проблему?

1 Ответ

0 голосов
/ 01 марта 2019

Вы достигнете, внедрив метод RecyclerView.SmoothScroller onTargetFound(View, State, Action).

/**
 * Called when the target position is laid out. This is the last callback SmoothScroller
 * will receive and it should update the provided {@link Action} to define the scroll
 * details towards the target view.
 * @param targetView    The view element which render the target position.
 * @param state         Transient state of RecyclerView
 * @param action        Action instance that you should update to define final scroll action
 *                      towards the targetView
 */
abstract protected void onTargetFound(View targetView, State state, Action action);

Специально в LinearLayoutManager с LinearSmoothScroller:

public class CenterLayoutManager extends LinearLayoutManager {

    public CenterLayoutManager(Context context) {
        super(context);
    }

    public CenterLayoutManager(Context context, int orientation, boolean reverseLayout) {
        super(context, orientation, reverseLayout);
    }

    public CenterLayoutManager(Context context, AttributeSet attrs, int defStyleAttr, int defStyleRes) {
        super(context, attrs, defStyleAttr, defStyleRes);
    }

    @Override
    public void smoothScrollToPosition(RecyclerView recyclerView, RecyclerView.State state, int position) {
        RecyclerView.SmoothScroller smoothScroller = new CenterSmoothScroller(recyclerView.getContext());
        smoothScroller.setTargetPosition(position);
        startSmoothScroll(smoothScroller);
    }

    private static class CenterSmoothScroller extends LinearSmoothScroller {

        CenterSmoothScroller(Context context) {
            super(context);
        }

        @Override
        public int calculateDtToFit(int viewStart, int viewEnd, int boxStart, int boxEnd, int snapPreference) {
            return (boxStart + (boxEnd - boxStart) / 2) - (viewStart + (viewEnd - viewStart) / 2);
        }
    }
}
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...