Room Invalidation tracker初始化两次

时间:2017-12-07 09:12:19

标签: android android-recyclerview android-room

我有一个水平回收者视图,其中包含自定义项目。每个项目都可以在Recycler视图中保存当前项目的位置。我想使用拖放移动项目时更新项目位置。但是当水平视图中有三个以上的项目时,数据会被删除。请帮帮我。 Source Code

这是我在Logcat中获得的:

  

E / ROOM:无效跟踪器初始化两次:/。

     

E /项目已移动:Counterfrom3

     

下一项: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,
                0, fromContentValues, "posItem =" + fromPosition, null);

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

1 个答案:

答案 0 :(得分:4)

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

但如果我保持一切相同并回到使用Room v1.0.0,就不会出现这样的问题,一切都运转良好。

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

google issues