对于这个问题,我已经准备好a simple and working example at Github:
我的示例应用程序使用okhttp下载了一个包含游戏中前30名玩家的JSON数组,并将它们存储到SQLite Room中。在fragment中,观察相应的LiveData<List<TopEntity>>
对象并更新FastAdapter实例:
public class TopFragment extends Fragment {
private final ItemAdapter<TopItem> mItemAdapter = new ItemAdapter<>();
private final FastAdapter<TopItem> mFastAdapter = FastAdapter.with(mItemAdapter);
private TopViewModel mViewModel;
private ProgressBar mProgressBar;
private RecyclerView mRecyclerView;
@Override
public View onCreateView(@NonNull LayoutInflater inflater,
ViewGroup container,
Bundle savedInstanceState) {
mViewModel = ViewModelProviders.of(this).get(TopViewModel.class);
mViewModel.getTops().observe(this, tops -> {
mItemAdapter.clear();
for (TopEntity top: tops) {
TopItem item = new TopItem(top);
mItemAdapter.add(item);
}
});
View v = inflater.inflate(R.layout.top_fragment, container, false);
mProgressBar = v.findViewById(R.id.progressBar);
mRecyclerView = v.findViewById(R.id.recyclerView);
mRecyclerView.setLayoutManager(new LinearLayoutManager(getActivity()));
mRecyclerView.setAdapter(mFastAdapter);
fetchJsonData();
return v;
}
我的问题是:每次下载数据时,回收站视图都会闪烁一次。
即使前30名的变动并不频繁,也就是数据保持不变。
当我查看Penz先生出色的FastAdapter库中的示例应用程序时,那里没有任何闪烁。
更新:
我已经a hint认为闪烁显然是由于在mItemAdapter.clear();
方法中调用onChanged
引起的,我应该改用DiffUtil类。
所以我添加了一个新类:
public class DiffCallback extends DiffUtil.Callback {
private final List<TopItem> mOldList;
private final List<TopItem> mNewList;
public DiffCallback(List<TopItem> oldStudentList, List<TopItem> newStudentList) {
this.mOldList = oldStudentList;
this.mNewList = newStudentList;
}
@Override
public int getOldListSize() {
return mOldList.size();
}
@Override
public int getNewListSize() {
return mNewList.size();
}
@Override
public boolean areItemsTheSame(int oldItemPosition, int newItemPosition) {
TopItem oldItem = mOldList.get(oldItemPosition);
TopItem newItem = mNewList.get(newItemPosition);
return oldItem.uid == newItem.uid;
}
@Override
public boolean areContentsTheSame(int oldItemPosition, int newItemPosition) {
TopItem oldItem = mOldList.get(oldItemPosition);
TopItem newItem = mNewList.get(newItemPosition);
return oldItem.elo == newItem.elo &&
oldItem.given.equals(newItem.given) &&
//oldItem.photo != null && oldItem.photo.equals(newItem.photo) &&
oldItem.avg_time != null && oldItem.avg_time.equals(newItem.avg_time) &&
oldItem.avg_score == newItem.avg_score;
}
@Nullable
@Override
public Object getChangePayload(int oldItemPosition, int newItemPosition) {
return super.getChangePayload(oldItemPosition, newItemPosition);
}
}
然后我尝试在onChanged
方法中使用它,而不是仅调用mItemAdapter.clear()
,但是即使tops
具有以下元素,RecyclerView仍为空:
mViewModel = ViewModelProviders.of(this).get(TopViewModel.class);
mViewModel.getTops().observe(this, tops -> {
List<TopItem> oldList = mItemAdapter.getAdapterItems();
List<TopItem> newList = new ArrayList<>();
for (TopEntity top: tops) {
TopItem item = new TopItem(top);
newList.add(item);
}
DiffCallback diffCallback = new DiffCallback(oldList, newList);
DiffUtil.DiffResult diffResult = DiffUtil.calculateDiff(diffCallback);
mItemAdapter.getAdapterItems().clear();
mItemAdapter.getAdapterItems().addAll(newList);
diffResult.dispatchUpdatesTo(mFastAdapter);
});
我的问题摘要:
我的真实应用使用FastAdapter
的原因有很多,我正在寻找一种将其与DiffUtil结合使用的方法,以消除通过HTTPS和HTTPS下载数据时的一次性闪烁。在Room中更新。
答案 0 :(得分:3)
一种避免闪烁的简单方法是禁用RecyclerView
的{{1}}。
ItemAnimator
答案 1 :(得分:3)
With the help of FastAdapter author通过将标识符添加到要显示在RecyclerView中的TopItem中,我已经消除了一次性闪烁:
@Override
public long getIdentifier() {
return uid;
}
然后在我的TopFragment中使用FastAdapterDiffUtil:
mViewModel = ViewModelProviders.of(this).get(TopViewModel.class);
mViewModel.getTops().observe(this, tops -> {
List<TopItem> newList = new ArrayList<>();
for (TopEntity top: tops) {
TopItem item = new TopItem(top);
newList.add(item);
}
DiffUtil.DiffResult diffResult = FastAdapterDiffUtil.calculateDiff(mItemAdapter, newList);
FastAdapterDiffUtil.set(mItemAdapter, diffResult);
});
答案 2 :(得分:1)
尝试从getChangePayload()方法返回一些标记对象。
@Nullable
@Override
public Object getChangePayload(final int oldItemPosition, final int newItemPosition) {
return mNewList.get(newItemPosition);
}