Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用带有房间数据库的分页列表适配器。删除/添加其他项目后如何获取项目的“旧位置”和“新位置”。任何帮助,将不胜感激
当您在 RecyclerView 中使用 ViewHolder 时,您会覆盖方法,其中一些已获得位置。例子:
@Override public void onBindViewHolder(@NonNull RecyclerView.ViewHolder holder, int position) { //TODO something}
你也可以使用地图来保存这个位置,比如标题(如果标题不重复)。我希望对您有所帮助,但我的意思是其他人有更好的建议。