I extended
RecyclerView.Adapter<RecyclerView.ViewHolder>
And when I called:
mRecyclerView.getAdapter().notifyDataSetChanged();
Nothing happened.
The only way to refresh the view is to set again the adapter (see this answer):
mRecyclerView.setAdapter(new MyAdapter(...));
I have two issues with this solution:
- I can see a blink on the screen when I set again the adapter
- The listview returns to the first position.
Any ideas?
If notifyDataSetChanged()
does not trigger view updates than there is a chance that you have forgotten to call SetLayoutManager()
on your RecyclerView (like I did!).
Just don't forget to do this:
Java code:
LinearLayoutManager layoutManager = new LinearLayoutManager(context ,LinearLayoutManager.VERTICAL, false);
recyclerView.setLayoutManager(layoutManager)
C# code, I'm using Xamarin.
var layoutManager = new LinearLayoutManager(Context, LinearLayoutManager.Vertical, false);
recyclerView.SetLayoutManager(layoutManager);
before you call recyclerView.SetAdapter(adapter)
;
If your getItemCount()
returns 0, then notifyDataSetChanged()
won't do anything. Make sure that when you initialize your adapter, you are passing a valid dataset.
According to the javadocs: If you are writing an adapter it will always be more efficient to use the more specific change events if you can. Rely on notifyDataSetChanged()
as a last resort.
public class NewsAdapter extends RecyclerView.Adapter<...> {
private static List mFeedsList;
...
public void swap(List list){
if (mFeedsList != null) {
mFeedsList.clear();
mFeedsList.addAll(list);
}
else {
mFeedsList = list;
}
notifyDataSetChanged();
}
I am using Retrofit to fetch the list, on Retrofit's onResponse() use,
adapter.swap(feedList);
To update recyclerview we can do the following:
Create and set adapter again:
adapter=new MyAdapter(...); mRecyclerView.setAdapter(adapter);
Clear model list data and then notify:
List<YourModel> tempModel=new ArrayList<>(modelList); modelList.clear(); modelList.addAll(tempModel); adapter.notifyDataSetChanged();
Want to share something, I was facing the same issue. But what i was doing wrong was. I was creating instance of Adapter every time new and than doing notifysetDatachange() to that new instance not the older one.
So please make sure Adapter whom you notifysetDatachange() should be older one. Hope below example helps..
MyAdapter mAdapter = new MyAdapter(...)
mRecyclerView.setAdapter(mAdapter );
// TODO
mAdapter.modifyData(....);
mAdapter.notifySetDataChange();
MyAdapter extends baseAdapter {
MyAdapter () {
}
modifyData(String[] listData) {
}
}
So i fixed my problem like this : orderList is the List that i pass on to the recyclerview . We can just add the item at the position in the list, here 0 is the 0th position in the List . Then call adapter.notifyDataSetChanged() . Works like a charm
1) orderList.add(0,String); 2) orderAdapter.notifyDataSetChanged();
notifyDataSetChanged() sholud be called in main thread.
来源:https://stackoverflow.com/questions/27714127/recyclerview-adapter-notifydatasetchanged-not-working