我正在尝试使用Realm离线数据库在ListView中显示列表项。我遵循了一些教程,他使用了无法用我解决的allObjects()方法!!
你可以帮帮我吗?
这是我的代码:
@Override
protected void onResume() {
super.onResume();
Realm.init(getApplicationContext());
RealmConfiguration config = new RealmConfiguration.
Builder().
deleteRealmIfMigrationNeeded().
build();
Realm.setDefaultConfiguration(config);
Realm realm = Realm.getInstance(config);
realm.beginTransaction();
List<Car> cars = realm.**allObjects**(Car.class);
String[] names = new String[cars.size()];
for(int i=0; i<names.length;i++){
names[i]=cars.get(i).getName();
}
ListView listView = (ListView)findViewById(R.id.listView);
ArrayAdapter<String> adapter = new ArrayAdapter<String>(this, android.R.layout.simple_list_item_1,names);
listView.setAdapter(adapter);
}
答案 0 :(得分:7)
realm.beginTransaction();
你不需要那个。
List<Car> cars = realm.**allObjects**(Car.class);
realm.allObjects(Car.class)
已替换为realm.where(Car.class).findAll()
。具体来说,allObjects
在0.90.0中已弃用,在0.91.0中已删除,请参阅here。