Recyclerview having list view inside it-Image
我在recyclerview中使用Listview,但是当我滚动列表视图时,它会向下滚动recyclerview。
这是我要将适配器设置为recyclerview。
RecyclerView.LayoutManager layoutManager=new LinearLayoutManager(getContext());
recyclerView.setLayoutManager(layoutManager);
recyclerView.hasFixedSize();
recyclerView.setAdapter(adapter);
这里是带有适配器的Listview。
public void pendingPaymentTableData(List<PendingPaymentModel> list,Context context,View view){
if (list.size()>0){
ListView listView=view.findViewById(R.id.table_body);
PendingPaymentListAdapter adapter=new PendingPaymentListAdapter(list,context);
listView.setAdapter(adapter);
}
else {
Toast.makeText(context, "No data found for table", Toast.LENGTH_SHORT).show();
}
}
我不知道我在哪里做错了