在下面的代码中嗨,如果我使用swipe的方式使用recyclerview。如果我正在刷再生资源的项目,则显示编辑/共享。
使用以下代码,我的recyclerview滚动不流畅。
proposalAdapter = new ProposalAdapter(requireContext(), listSalesStageOpportunity);
recyclerViewOpportunity.setLayoutManager(new LinearLayoutManager(getContext(), LinearLayoutManager.VERTICAL, false));
recyclerViewOpportunity.setAdapter(proposalAdapter);
recyclerViewOpportunity.setNestedScrollingEnabled(false);
Adapter.java:
holder.cardView.setOnTouchListener(new View.OnTouchListener() {
@Override
public boolean onTouch(View v, MotionEvent event) {
v.getParent().requestDisallowInterceptTouchEvent(true);
return false;
}
});
答案 0 :(得分:0)
也许您可以将以下代码添加到已声明的回收视图XML文件android:nestedScrollingEnabled="false"
中。