9

ページネーションの実装中。私はこの問題に直面しました。onscrolled メソッドをスクロールせずに継続的に呼び出します。以下のコードを確認してください。

参考までに、AdapterViews と RecyclerView で Endless Scrolling を 使用しています。

thisのデモ例も 1 つあります。

API からデータを要求しています。そこでボレーを実装しました。セットアップ後、奇妙なことが起こりました。OnScrolled メソッドは、スクロールせずに継続的に呼び出します。以下は私のコードです。

    HomeFragment.java

    view = inflater.inflate(R.layout.fragment_home, container, false);

    tvNoDataFound = (TextView) view.findViewById(R.id.tv_no_data_found);
    recyclerView = (RecyclerView)view.findViewById(R.id.listView);

    linearLayoutManager = new LinearLayoutManager(getActivity());

    recyclerView.setNestedScrollingEnabled(false);

    recyclerView.setLayoutManager(linearLayoutManager);


    context = view.getContext();

    // Lookup the swipe container view
    swipeProjects = (SwipeRefreshLayout)view.findViewById(R.id.swipeProjects);

    // Setup refresh listener which triggers new data loading
    swipeProjects.setOnRefreshListener(new SwipeRefreshLayout.OnRefreshListener() {
        @Override
        public void onRefresh() {
            // Your code to refresh the list here.
            // Make sure you call swipeContainer.setRefreshing(false)
            // once the network request has completed successfully.
            getProjects(0,0);
        }
    });
    // Configure the refreshing colors
    swipeProjects.setColorSchemeResources(android.R.color.holo_blue_bright,
            android.R.color.holo_green_light,
            android.R.color.holo_orange_light,
            android.R.color.holo_red_light);

    List<LatestProject> getLatest = getProjects(0,0);

    recyclerView.addOnScrollListener(new EndlessRecyclerViewScrollListener(linearLayoutManager) {

        @Override
        public void onLoadMore(int page, int totalItemsCount) {

            Log.e("here scrolling","scrolling---"+page+"---"+totalItemsCount);

            // Triggered only when new data needs to be appended to the list
            // Add whatever code is needed to append new items to the bottom of the list
            List<LatestProject> getLatest = getProjects(totalItemsCount,page);
        }
    });
return view;

サーバーからの応答を取得した後、以下の関数を使用してアダプターを設定しました。

public List<LatestProject> returnProjects(List<LatestProject> list, int offset, int curSizes){

    if(offset!=0){
        int curSize = adapter.getItemCount();
        latestProjectsList.addAll(list);
        adapter.notifyItemRangeInserted(curSize, list.size() - 1);
    }else{
        latestProjectsList = list;
        adapter = new ProjectListAdapter(list,getActivity(),HomeFragment.this);
        recyclerView.setAdapter(adapter);
    }
    return list;
}

上記のコードでは、最初の API 呼び出しのオフセットが 0 です。何が問題なのかわかりません。ボレー非同期リクエストが原因ですか?

4

2 に答える 2

7

はい、呼ばれます。これを克服するには、1つの方法を作成します

private boolean isLastItemDisplaying(RecyclerView recyclerView) {
    if (recyclerView.getAdapter().getItemCount() != 0) {
        int lastVisibleItemPosition = ((LinearLayoutManager) recyclerView.getLayoutManager()).findLastCompletelyVisibleItemPosition();
        if (lastVisibleItemPosition != RecyclerView.NO_POSITION && lastVisibleItemPosition == recyclerView.getAdapter().getItemCount() - 1)
            return true;
    }
    return false;
}

現在、onScolledそのメソッドでメソッドチェックを行っています。

 boolean a = isLastItemDisplaying(recycler_product);
 if(a)
     {
        List<LatestProject> getLatest = getProjects(totalItemsCount,page);
     }
于 2016-09-15T10:10:42.250 に答える