3

私は EndlessOnScrollListener (ネット上の天才による著作権) を使用して、RecyclerView で無限のタイムラインを処理しています。EndlessOnScrollListener は基本的に次のようになります。

public abstract class EndlessRecyclerOnScrollListener extends RecyclerView.OnScrollListener {
    private int previousTotal = 0; // The total number of items in the dataset after the last load
    private boolean loading = true; // True if we are still waiting for the last set of data to load.
    private int visibleThreshold = 20; // The minimum amount of items to have below your current scroll position before loading more.
    int firstVisibleItem, visibleItemCount, totalItemCount;

    private LinearLayoutManager mLinearLayoutManager;

    public EndlessRecyclerOnScrollListener(LinearLayoutManager linearLayoutManager) {
        this.mLinearLayoutManager = linearLayoutManager;
    }

    @Override
    public void onScrolled(RecyclerView recyclerView, int dx, int dy) {
        super.onScrolled(recyclerView, dx, dy);

        visibleItemCount = recyclerView.getChildCount();
        totalItemCount = mLinearLayoutManager.getItemCount();
        firstVisibleItem = LinearLayoutManager.findFirstVisibleItemPosition();

        // recalculate parameters, after new data has been loaded, reset loading to false
        if (loading) {
            if (totalItemCount > previousTotal) {
                loading = false;
                previousTotal = totalItemCount;
            }
        }

        // if visibleThreshold has been reached on the upper (time-wise) side of the Timeline, load next data
        if (!loading && (totalItemCount - visibleItemCount)
                <= (firstVisibleItem + visibleThreshold)) {
            loadNext();
            loading = true;
        }

        // if visibleThreshold has been reached on the lower side of the Timeline, load previous data
        if (!loading && (firstVisibleItem - visibleThreshold <= 0)) {
            loadPrevious();
            loading = true;
        }
    }

    public abstract void loadNext();

    public abstract void loadPrevious();
}

リスト (タイムライン) を両方向にエンドレスにしたいので、loadPrevious() 部分を追加しました。

loadPrevious() の実装では、X か月の日数を RecyclerView のデータセットに追加し、現在のスクロール位置を再計算してから、プログラムでその新しい位置までスクロールして、ユーザーに継続的なスクロールの印象を与えます。問題は、私がそれをした瞬間、スクロールが停止し、RecyclerView がその位置にスナップすることです (明らかに)。スクロールを続けるには、新しいフリングが必要です。

質問: ユーザーが何も気付かないように、RecyclerView がスクロールしていたスクロール速度を何らかの方法で記録し、プログラムでスクロールを再度開始する方法はありますか?

4

0 に答える 0