我试图弄清楚更新RecyclerView的适配器有什么问题。

在我得到一个新的产品清单后,我试着:

Update the ArrayList from the fragment where recyclerView is created, set new data to adapter, and then call adapter.notifyDataSetChanged(); it did not work. Create a new adapter, as others did, and it worked for them, but there wasn't any change for me: recyclerView.setAdapter(new RecyclerViewAdapter(newArrayList)) Create a method in Adapter which updates the data as follows: public void updateData(ArrayList<ViewModel> viewModels) { items.clear(); items.addAll(viewModels); notifyDataSetChanged(); } Then I call this method whenever I want to update the data list; it did not work. To check if I can modify the recyclerView in any way, and I tried to remove at least an item: public void removeItem(int position) { items.remove(position); notifyItemRemoved(position); }

一切都保持原样。

这是我的适配器:

public class RecyclerViewAdapter extends RecyclerView.Adapter<RecyclerViewAdapter.ViewHolder> implements View.OnClickListener {

    private ArrayList<ViewModel> items;
    private OnItemClickListener onItemClickListener;

    public RecyclerViewAdapter(ArrayList<ViewModel> items) {
        this.items = items;
    }


    public void setOnItemClickListener(OnItemClickListener onItemClickListener) {
        this.onItemClickListener = onItemClickListener;
    }

    @Override
    public ViewHolder onCreateViewHolder(ViewGroup parent, int viewType) {
        View v = LayoutInflater.from(parent.getContext()).inflate(R.layout.item_recycler, parent, false);
        v.setOnClickListener(this);
        return new ViewHolder(v);
    }

    public void updateData(ArrayList<ViewModel> viewModels) {
        items.clear();
        items.addAll(viewModels);
        notifyDataSetChanged();
    }
    public void addItem(int position, ViewModel viewModel) {
        items.add(position, viewModel);
        notifyItemInserted(position);
    }

    public void removeItem(int position) {
        items.remove(position);
        notifyItemRemoved(position);
    }


    @Override
    public void onBindViewHolder(ViewHolder holder, int position) {
        ViewModel item = items.get(position);
        holder.title.setText(item.getTitle());
        Picasso.with(holder.image.getContext()).load(item.getImage()).into(holder.image);
        holder.price.setText(item.getPrice());
        holder.credit.setText(item.getCredit());
        holder.description.setText(item.getDescription());

        holder.itemView.setTag(item);
    }


    @Override
    public int getItemCount() {
        return items.size();
    }


    @Override
    public void onClick(final View v) {
        // Give some time to the ripple to finish the effect
        if (onItemClickListener != null) {
            new Handler().postDelayed(new Runnable() {
                @Override
                public void run() {
                    onItemClickListener.onItemClick(v, (ViewModel) v.getTag());
                }
            }, 0);
        }
    }

    protected static class ViewHolder extends RecyclerView.ViewHolder {
        public ImageView image;
        public TextView price, credit, title, description;

        public ViewHolder(View itemView) {
            super(itemView);
            image = (ImageView) itemView.findViewById(R.id.image);
            price = (TextView) itemView.findViewById(R.id.price);
            credit = (TextView) itemView.findViewById(R.id.credit);
            title = (TextView) itemView.findViewById(R.id.title);
            description = (TextView) itemView.findViewById(R.id.description);
        }
    }

    public interface OnItemClickListener {

        void onItemClick(View view, ViewModel viewModel);

    }
}

我启动RecyclerView,如下所示:

recyclerView = (RecyclerView) view.findViewById(R.id.recycler);
recyclerView.setLayoutManager(new GridLayoutManager(getActivity(), 5));
adapter = new RecyclerViewAdapter(items);
adapter.setOnItemClickListener(this);
recyclerView.setAdapter(adapter);

那么,如何实际更新适配器数据以显示新接收到的项呢?


问题是gridView的布局是这样的:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:layout_width="match_parent"
    android:tag="catalog_fragment"
    android:layout_height="match_parent">

    <FrameLayout
        android:orientation="vertical"
        android:layout_width="match_parent"
        android:layout_height="match_parent">

        <android.support.v7.widget.RecyclerView
            android:id="@+id/recycler"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:clipToPadding="false"/>

        <ImageButton
            android:id="@+id/fab"
            android:layout_gravity="top|end"
            style="@style/FabStyle"/>

    </FrameLayout>
</LinearLayout>

然后我只是删除线性布局,并使FrameLayout作为父布局。


当前回答

如果上面的评论对你不起作用,这可能意味着问题出在其他地方。

我发现解决方案的一个地方是我将列表设置到适配器的方式。在我的活动中,列表是一个实例变量,当任何数据发生变化时,我直接改变它。由于它是一个参考变量,所以发生了一些奇怪的事情。

因此,我将引用变量更改为本地变量,并使用另一个变量更新数据,然后传递给前面回答中提到的addAll()函数。

其他回答

我正在使用RecyclerView和删除和更新工作得很好。

删除: 从RecyclerView中删除项目有四个步骤 list.remove(位置); recycler.removeViewAt(位置); mAdapter.notifyItemRemoved(位置); mAdapter。notifyItemRangeChanged(位置,list.size ()); 这几行代码对我有用。 更新数据: 我唯一要做的就是: mAdapter.notifyDataSetChanged ();

您必须在活动/片段代码中完成所有这些,而不是在RecyclerView适配器代码中。

这个很好试试。

  ArrayList.remove(position);
  notifyItemRemoved(position);
  notifyDataSetChanged();

如果上面的评论对你不起作用,这可能意味着问题出在其他地方。

我发现解决方案的一个地方是我将列表设置到适配器的方式。在我的活动中,列表是一个实例变量,当任何数据发生变化时,我直接改变它。由于它是一个参考变量,所以发生了一些奇怪的事情。

因此,我将引用变量更改为本地变量,并使用另一个变量更新数据,然后传递给前面回答中提到的addAll()函数。

我建议你探索一下DiffUtil。它还提高了RecyclerView在处理列表更新时的性能。

在适配器中定义一个变量: differList = AsyncListDiffer(this, this.callback); differList.submitList(列表)

在这里,列表可以是您最初的原始列表,也可以只是一个空列表,前提是您稍后将更新它。

实现回调函数: 私有val回调:DiffUtil。ItemCallback<Item> = object: DiffUtil.ItemCallback<Item>() { override fun areitemssame (oldItem: Item, newItem: Item) = oldItem。id == newItem.id override fun arecontentssame (oldItem: Item, newItem: Item) = oldItem == newItem } 同样,在同一个适配器中,您将有一些公共函数来设置列表。 setData(list: list <Item>) { differList.submitList(列表) //是的,就是这样! }

现在,在你对你的列表做了任何改变之后(插入/更新/删除),只需从你的片段/活动中调用这个setData(列表)。 mAdapter.setData(列表)

容易,对吧?

这是一个普遍的答案。本文解释了更新适配器数据的各种方法。该过程每次包括两个主要步骤:

更新数据集 将更改通知适配器

插入单个项目

在索引2中添加“Pig”。

String item = "Pig";
int insertIndex = 2;
data.add(insertIndex, item);
adapter.notifyItemInserted(insertIndex);

插入多个项目

在索引2处再插入三只动物。

ArrayList<String> items = new ArrayList<>();
items.add("Pig");
items.add("Chicken");
items.add("Dog");
int insertIndex = 2;
data.addAll(insertIndex, items);
adapter.notifyItemRangeInserted(insertIndex, items.size());

删除一个项目

从列表中删除“猪”。

int removeIndex = 2;
data.remove(removeIndex);
adapter.notifyItemRemoved(removeIndex);

移除多个项目

从列表中删除“骆驼”和“绵羊”。

int startIndex = 2; // inclusive
int endIndex = 4;   // exclusive
int count = endIndex - startIndex; // 2 items will be removed
data.subList(startIndex, endIndex).clear();
adapter.notifyItemRangeRemoved(startIndex, count);

移除所有物品

清除整个列表。

data.clear();
adapter.notifyDataSetChanged();

用新列表替换旧列表

清除旧列表,然后添加一个新列表。

// clear old list
data.clear();

// add new list
ArrayList<String> newList = new ArrayList<>();
newList.add("Lion");
newList.add("Wolf");
newList.add("Bear");
data.addAll(newList);

// notify adapter
adapter.notifyDataSetChanged();

适配器有一个对数据的引用,所以我没有将数据设置为一个新对象是很重要的。相反,我从数据中清除了旧项,然后添加了新的项。

更新单项

将“Sheep”项更改为“I like Sheep”。

String newValue = "I like sheep.";
int updateIndex = 3;
data.set(updateIndex, newValue);
adapter.notifyItemChanged(updateIndex);

移动单个物品

将“羊”从位置3移动到位置1。

int fromPosition = 3;
int toPosition = 1;

// update data array
String item = data.get(fromPosition);
data.remove(fromPosition);
data.add(toPosition, item);

// notify adapter
adapter.notifyItemMoved(fromPosition, toPosition);

Code

这里是项目代码供您参考。RecyclerView适配器代码可以在这个答案中找到。

MainActivity.java

public class MainActivity extends AppCompatActivity implements MyRecyclerViewAdapter.ItemClickListener {

    List<String> data;
    MyRecyclerViewAdapter adapter;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

        // data to populate the RecyclerView with
        data = new ArrayList<>();
        data.add("Horse");
        data.add("Cow");
        data.add("Camel");
        data.add("Sheep");
        data.add("Goat");

        // set up the RecyclerView
        RecyclerView recyclerView = findViewById(R.id.rvAnimals);
        LinearLayoutManager layoutManager = new LinearLayoutManager(this);
        recyclerView.setLayoutManager(layoutManager);
        DividerItemDecoration dividerItemDecoration = new DividerItemDecoration(recyclerView.getContext(),
                layoutManager.getOrientation());
        recyclerView.addItemDecoration(dividerItemDecoration);
        adapter = new MyRecyclerViewAdapter(this, data);
        adapter.setClickListener(this);
        recyclerView.setAdapter(adapter);
    }

    @Override
    public void onItemClick(View view, int position) {
        Toast.makeText(this, "You clicked " + adapter.getItem(position) + " on row number " + position, Toast.LENGTH_SHORT).show();
    }

    public void onButtonClick(View view) {
        insertSingleItem();
    }

    private void insertSingleItem() {
        String item = "Pig";
        int insertIndex = 2;
        data.add(insertIndex, item);
        adapter.notifyItemInserted(insertIndex);
    }

    private void insertMultipleItems() {
        ArrayList<String> items = new ArrayList<>();
        items.add("Pig");
        items.add("Chicken");
        items.add("Dog");
        int insertIndex = 2;
        data.addAll(insertIndex, items);
        adapter.notifyItemRangeInserted(insertIndex, items.size());
    }

    private void removeSingleItem() {
        int removeIndex = 2;
        data.remove(removeIndex);
        adapter.notifyItemRemoved(removeIndex);
    }

    private void removeMultipleItems() {
        int startIndex = 2; // inclusive
        int endIndex = 4;   // exclusive
        int count = endIndex - startIndex; // 2 items will be removed
        data.subList(startIndex, endIndex).clear();
        adapter.notifyItemRangeRemoved(startIndex, count);
    }

    private void removeAllItems() {
        data.clear();
        adapter.notifyDataSetChanged();
    }

    private void replaceOldListWithNewList() {
        // clear old list
        data.clear();

        // add new list
        ArrayList<String> newList = new ArrayList<>();
        newList.add("Lion");
        newList.add("Wolf");
        newList.add("Bear");
        data.addAll(newList);

        // notify adapter
        adapter.notifyDataSetChanged();
    }

    private void updateSingleItem() {
        String newValue = "I like sheep.";
        int updateIndex = 3;
        data.set(updateIndex, newValue);
        adapter.notifyItemChanged(updateIndex);
    }

    private void moveSingleItem() {
        int fromPosition = 3;
        int toPosition = 1;

        // update data array
        String item = data.get(fromPosition);
        data.remove(fromPosition);
        data.add(toPosition, item);

        // notify adapter
        adapter.notifyItemMoved(fromPosition, toPosition);
    }
}

笔记

如果使用notifyDataSetChanged(),则不会执行动画。这也可能是一个代价高昂的操作,因此如果您只更新单个项或一组项,则不建议使用notifyDataSetChanged()。 如果您正在对列表进行较大或复杂的更改,请检查DiffUtil。

进一步的研究

CodePath:使用RecyclerView 使用DiffUtil更新RecyclerView的聪明方法