1

我正在开发一个使用 Realm 作为数据库的 android 应用程序。

当用户安装它时,该数据库中已经有一些数据。问题是其中一些 Realm 对象有一个显然正在创建的其他对象的列表,因为我在调试器中看到了它,但是当我尝试访问这个列表时realmObject.getList.size();,结果输出为 0。

更具体地说,我有这个模型:

public class Muscle extends RealmObject{

    @PrimaryKey
    private int id;

    private String name;

    private RealmList<Routine> routines;

    public Muscle(String name){
        this.id = MyApplication.MuscleID.incrementAndGet();
        this.name = name;
        this.routines = new RealmList<Routine>();
    }

    public Muscle(){}

    public int getId() {
        return id;
    }

    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }

    public RealmList<Routine> getRoutines() {
        return routines;
    }

}

和这个:

public class Routine extends RealmObject {

    @PrimaryKey
    private int id;

    @Required
    private String name;

    private RealmList<Detail> details;

    public Routine(String name){
        this.id = MyApplication.RoutineID.incrementAndGet();
        this.name = name;
        this.details = new RealmList<Detail>();
    }

    public Routine(){}

    public int getId() {
        return id;
    }

    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }

    public RealmList<Detail> getDetails() {
        return details;
    }

}

记录被插入领域,因为我可以在我的应用程序中访问和显示它们(至少是肌肉记录),我可以在调试器中看到Routine列表也在创建中,但我无法访问每个肌肉例程.

在我保存这些记录的 MyApplication.java 中,领域操作基本上如下所示:

public class MyApplication extends Application {

    public DateFormat df;

    public static AtomicInteger MuscleID = new AtomicInteger();
    public static AtomicInteger RoutineID = new AtomicInteger();
    public static AtomicInteger DetailID = new AtomicInteger();

    @Override
    public void onCreate() {
        super.onCreate();

        Realm.init(getApplicationContext());
        setUpRealmConfig();

        Realm realm = Realm.getDefaultInstance();
        MuscleID = getIdByTable(realm, Muscle.class);
        RoutineID = getIdByTable(realm, Routine.class);
        DetailID = getIdByTable(realm, Detail.class);

        realm.close();
    }

    private void setUpRealmConfig() {
        RealmConfiguration config = new RealmConfiguration.Builder().initialData(new Realm.Transaction() {
            @Override
            public void execute(Realm realm) {

            Muscle chest = new Muscle(getString(R.string.chest));
            realm.copyToRealmOrUpdate(chest);

            Muscle legs = new Muscle(getString(R.string.legs));
            realm.copyToRealmOrUpdate(legs);


            Routine cr1 = new Routine(getString(R.string.beginner_chest_1));
            realm.copyToRealmOrUpdate(cr1);

            chest.getRoutines().add(cr1);

            }
        })
                .deleteRealmIfMigrationNeeded()
                .build();
        Realm.setDefaultConfiguration(config);
    }

还有更多,但这是相关的代码。我已经确保每个模型的 ids 自动增加并且工作正常,所有肌肉对象都插入到数据库中,我可以在我的应用程序中看到它们没问题,但是显然创建了例程,因为我观察了列表大小up 并且调试器中的 id 递增,但是当我尝试在我的适配器中访问它时int workoutsNumber = muscle.getRoutines().size();,锻炼编号变为 0。

我不知道这里有什么问题。调试中一切似乎都很好,除了我不明白的一件事。调试器中的第一件事总是muscle = cannot find local variable 'muscle'

这是一个屏幕截图,您可以看到对象正在有效地创建,并且例程列表已添加到肌肉对象中,您还可以看到我上面提到的错误:调试屏幕截图

那么,int workoutsNumber = muscle.getRoutines().size();如果列表大小应该为 3,为什么我会得到 0 呢?

4

1 回答 1

0
        Routine cr1 = new Routine(getString(R.string.beginner_chest_1));
        realm.copyToRealmOrUpdate(cr1);

        chest.getRoutines().add(cr1);

应该

        Muscle chest = new Muscle(getString(R.string.chest));
        Muscle managedChestProxy = realm.copyToRealmOrUpdate(chest);


        Routine cr1 = new Routine(getString(R.string.beginner_chest_1));
        Routine managedRoutineProxy = realm.copyToRealmOrUpdate(cr1);

        managedChestProxy.getRoutines().add(managedRoutineProxy);
于 2017-05-24T21:43:40.490 回答