- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
所以出于某种原因,每当我向我的 ArrayList 添加一个新项目并通知 recyclerview 它已被添加时,它会复制前一个条目的数据。因此, View 已创建,但使用的是最后一个条目中的数据,而不是当前数据。
奇怪的是我使用 ORM Sugar 保存项目,所以当我检索它们时会显示正确的数据。这表明正在添加数据,但 View 未正确显示。
我只能假设每当我使用 notifyItemInserted 方法时,recyclerview 都不会调用 onBindViewHolder,因为当我使用 notifyDataSetChange() 时会显示正确的数据
这是我添加新项目的方法
@Override
public void AddCalorieToHistoryList(int calorieAmount, int currentCalorieAmount) {
// Get the date and the calorie amount from what the user entered.
Date date = new Date();
// Create the calorie history item and then save it (via ORM Sugar Library)
CalorieHistory calorieHistory = new CalorieHistory(date.toString(), calorieAmount);
calorieHistory.save();
// Notify the view of the new item that should be inserted.
historyView.InsertNewListItem(calorieHistory);
SubtractFromCurrentCalorieAmount(calorieAmount, currentCalorieAmount);
}
historyView的方法
@Override
public void InsertNewListItem(CalorieHistory calorieHistoryItem) {
// Add the new item
calorieHistories.add(calorieHistoryItem);
// Notify the insert so we get the animation from the default animator
historyListAdapter.notifyItemInserted(0);
}
这是 recyclerview 适配器
public class HistoryListAdapter extends RecyclerView.Adapter<HistoryListAdapter.HistoryListViewHolder> {
List<CalorieHistory> calorieHistoryList;
public HistoryListAdapter(List<CalorieHistory> historyList) {
this.calorieHistoryList = historyList;
}
// I think this is run once, it generates the view holder from the layout that we are using for each list item.
// This way it won't have to grab it each time we make a new list item. It's all stored on our view holder.
@Override
public HistoryListViewHolder onCreateViewHolder(ViewGroup parent, int i) {
View itemView = LayoutInflater.from(parent.getContext()).inflate(R.layout.calorie_history_item, parent, false);
return new HistoryListViewHolder(itemView);
}
// This executes everytime we make a new list item, it binds the data to the view.
@Override
public void onBindViewHolder(HistoryListViewHolder holder, int position) {
// Get the current calorHistory object and set it's data to the views.
CalorieHistory calorieHistory = calorieHistoryList.get(position);
holder.tvDate.setText(calorieHistory.date);
holder.tvAmount.setText(String.valueOf(calorieHistory.numberOfCalories));
}
@Override
public int getItemCount() {
// Return the size of our array.
return calorieHistoryList.size();
}
public static class HistoryListViewHolder extends RecyclerView.ViewHolder {
public TextView tvDate;
public TextView tvAmount;
public HistoryListViewHolder(View v) {
super(v);
tvDate = (TextView) v.findViewById(R.id.calorie_date);
tvAmount = (TextView) v.findViewById(R.id.calorie_amount);
}
}
}
最佳答案
根据列表规范,List.add(E object)
应该将项目添加到列表的END。您似乎正在向 END 添加项目,同时在第一个项目上通知插入。
为了将项目添加为第一项,您应该更改
calorieHistories.add(calorieHistoryItem);
到
calorieHistories.add(0, calorieHistoryItem);
编辑
或者,如果你真的想把项目添加到 END,你应该改变
historyListAdapter.notifyItemInserted(0);
到
historyListAdapter.notifyItemInserted(calorieHistories.size()-1);
关于android - RecyclerView notifyItemInserted 复制了之前条目的数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32642869/
我正在将我的应用程序从 sqlite 迁移到 Firebase。以前我会从数据库读取 N 项到数组列表并调用 notifyItemRangeInserted。现在从 Firebase 获取数据最方便的
我需要做的是将项目插入到 RecyclerView 的顶部。我有一个适配器,它保留了我的项目的 List,当我想添加到 RecyclerView 的顶部时,我只是使用这段代码: mItems.add(
我有一个 RecyclerView.Adapter 带有 hasStableIds(true); 和一个 LinearLayoutManager 带有 reverseLayout(true); 我向适
我正在使用 RecyclerView,.notifyItemInserted 仅将一项插入 RecyclerView。对于多个项目,我该怎么做?我想避免使用 .notifyDataSetChanged
必须notifyItemRangeChanged调用后被调用notifyItemInserted在 RecyclerView.Adapter 中?SO 上有很多示例,他们总是在 notifyItemI
当我添加一个新项目时,我正在调用方法 public void addItem(ArrayList> arrayList, int position){ this.arrayList=array
如果我们使用这两种方法来告诉适配器您指向的数据已更改,我很困惑,那么它们之间有什么区别。 最佳答案 notifyDataSetChanged() 可以被认为是一个“主要”变化。您是在告诉适配器数据集中
所以出于某种原因,每当我向我的 ArrayList 添加一个新项目并通知 recyclerview 它已被添加时,它会复制前一个条目的数据。因此, View 已创建,但使用的是最后一个条目中的数据,而
出于某种原因,当向 RecyclerView 添加一个新项目时(应该插入到列表的顶部),它不会显示,除非我向下滚动列表并返回到顶部,并且没有任何动画任何一个。 (只是出现在列表的顶部,就好像它一直都在
我正在尝试在回收站 View 中的第一个位置插入一个项目,即 0 索引,如下所示 try { commentList.add(new Comment( Prefer
我有一个要求,我应该在滚动和更新列表的同时下载广告项。由于调用 notifyDatasetChnaged() 会重置所有内容,因此我正在调用 notifyItemInserted(position)。
我正在将我的适配器移植到 RecyclerView.Adapter 我想要达到的目标:当用户在接近尾声时向下滚动时,我想开始获取数据,我还想在最后添加我的 ProgressBar View ,让用户知
我对 Android 还很陌生,目前正在开发我的第一个基于 RecyclerView 的严肃应用程序。当我插入或更新现有行时,我注意到我的应用程序中有一些有问题的行为:即使我在添加或 notifyIt
例如,您有一个适配器,并在 onBindViewHolder 方法中将 OnClickListener 设置为某些 View (并根据 View 位置在那里执行一些操作)。您应该将 final 分配给
最近我将我的 recyclerview-v7:23 升级到 recyclerview-v7:24.2.0。我的应用程序有一个无穷无尽的滚动列表。当我将加载 View 添加到 RecyclerView
我正在使用 data.add(0,item); notifyItemInserted(0); 只要项目空间没有被填满,这就可以正常工作。之后就看不到动画了。 当我这样做时动画效果很好 data.add
我有一个带有水平线性布局管理器的 RecyclerView,声明如下: RecyclerView graph = (RecyclerView) findViewById(R.id.graph); Re
我正在尝试将 Firebase 支持的 RecyclerView 集成到 React Native 应用程序中。对于硬编码数据,它运行良好,但是在插入动态加载的行并在 RecyclerView.Ada
我是一名优秀的程序员,十分优秀!