android – Room Invalidation tracker初始化两次

前端之家收集整理的这篇文章主要介绍了android – Room Invalidation tracker初始化两次前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个水平回收站视图,其中包含自定义项目.每个项目都可以在Recycler视图中保存当前项目的位置.我想使用拖放移动项目时更新项目位置.但是当水平视图中有三个以上的项目时,数据会被删除.请帮帮我.
Source Code

这是我在Logcat中得到的:

E/ROOM: Invalidation tracker is initialized twice :/.

E/Itemmoved: Counterfrom3

next item:to2

在onCreate中初始化数据库.

db = Room.databaseBuilder(getApplicationContext(),AppDatabase.class,DB_NAME)
                .fallbackToDestructiveMigration()
                .allowMainThreadQueries()
                .build();

RecyclerView适配器代码.

@Override
public boolean onItemMove(int fromPosition,int toPosition) {
    String name = dataSet.get(fromPosition).getName();
    //this will make "Add item" do not move from its first position..
    if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.KITKAT) {
        if (!(Objects.equals(name,"Add") || (toPosition == 0 && fromPosition == 1))) {
            Collections.swap(dataSet,fromPosition,toPosition);
            MoveItem(fromPosition,toPosition);
            notifyItemMoved(fromPosition,toPosition);
            return true;
        }
    }
    return false;
}

移动项目时更新数据的代码.

public static void MoveItem(int fromPosition,int toPosition){
        String name = data.get(fromPosition).getName(); //This gets the current item name in the view 
        String nexName = data.get(toPosition).getName(); //This gets the next item name in the view 

        ContentValues fromContentValues = new ContentValues();
        fromContentValues.put("posItem",toPosition); //adding data to ContentValues
        ContentValues toContentValues = new ContentValues();
        toContentValues.put("posItem",fromPosition);
        Log.e("Item moved",name + "from" + fromPosition + "\n" + "next item:" + "to" + toPosition);

        db.beginTransaction();
        try {
        db.getOpenHelper().getWritableDatabase().update(name,fromContentValues,"posItem =" + fromPosition,null);

        db.getOpenHelper().getWritableDatabase().update(nexName,toContentValues,"posItem =" + toPosition,null);
        db.setTransactionSuccessful(); //setting Transaction Successful
        } finally {
            db.endTransaction(); // commit or rollback
            db.close(); //closing database
        }
    }

解决方法

当我迁移数据库版本时,同样的错误E / ROOM:失效跟踪器被初始化两次,并杀死应用程序,并重新打开工作.当我开始使用Room v1.1.0时.

但是,如果我保持一切相同并回到使用Room v1.0.0,那么就不会出现这样的问题,一切都很完美.

所以,可能是Room v1.1.0问题

google issues

原文链接:https://www.f2er.com/android/318159.html

猜你在找的Android相关文章