第一次数据填充正确。但是当我从下往上滚动recyclerview时,所有数据及其位置都乱七八糟。我尝试添加itemViewHolder.setIsRecyclable(false); setHasStableIds(false),但在尝试填充水平回收器视图的垂直回收器视图中没有任何效果
public HomeRecyclerViewAdapter(Context context, Home homeModel) {
this.context = context;
this.homeModel = homeModel;
}
@Override
public RecyclerView.ViewHolder onCreateViewHolder(ViewGroup parent, int viewType) {
if (viewType == TYPE_HEADER) {
View v = LayoutInflater.from(parent.getContext()).inflate(R.layout.homefragment_header, parent, false);
return new HeaderViewHolder(v);
} else if (viewType == TYPE_ITEM) {
View v = LayoutInflater.from(parent.getContext()).inflate(R.layout.item_homefragment, parent, false);
return new ItemViewHolder(v);
} else if (viewType == PRODUCT_ITEM) {
View v = LayoutInflater.from(parent.getContext()).inflate(R.layout.layout_productlines, parent, false);
return new ProductLinesItemHolder(v);
} else if (viewType == SHOPS_ITEM) {
View v = LayoutInflater.from(parent.getContext()).inflate(R.layout.layout_productlines, parent, false);
return new ShopsOfWeekItemHolder(v);
}
return null;
}
@Override
public void onBindViewHolder(RecyclerView.ViewHolder holder, int position) {
if (position == 0) {
if (holder instanceof HeaderViewHolder) {
// load data in slider
}
} else if (holder instanceof ItemViewHolder) {
ItemViewHolder itemViewHolder = (ItemViewHolder) holder;
if (homeModel.getCategories().get(0) != null) {
if (position == 1) {
//load data in category recyclerview
holder.setIsRecyclable(false);
}
}
} else if (holder instanceof ProductLinesItemHolder) {
ProductLinesItemHolder itemViewHolder = (ProductLinesItemHolder) holder;
if (homeModel.getProductLines() != null) {
if (position > 1 && pos <= homeModel.getProductLines().size()-1) {
Log.d("HomeRecycler","pos:"+pos);
Log.d("HomeRecycler","position:"+ (position-2));
setRecyclerView(2, itemViewHolder);
Log.d("HomeRecycler","pos:"+homeModel.getProductLines().get(pos).getName());
itemViewHolder.txtProductName.setText(homeModel.getProductLines().get(pos).getName());
itemViewHolder.txtViewAllShops.setVisibility(View.GONE);
populateProductLinesItem(itemViewHolder, homeModel.getProductLines().get(pos));
pos = pos + 1;
}
}
}
private void populateProductLinesItem(ProductLinesItemHolder itemViewHolder, ProductLines productLines) {
ProductLinesItemAdapter productLinesItemAdapter = new ProductLinesItemAdapter(context, productLines.getItems(), clickEventOfProductsItemListener);
itemViewHolder.prodLinesRecyclerView.setAdapter(productLinesItemAdapter);
productLinesItemAdapter.notifyDataSetChanged();
}有没有人能推荐一下?如何避免这个问题?更多代码:https://gist.github.com/anonymous/7785cdd97b5c27886c81f321c8965930
发布于 2017-03-10 19:26:59
https://stackoverflow.com/questions/42620387
复制相似问题