我在旋转屏幕时更新RecyclerView有问题。通过单击fab按钮,我显示带有输入字段的对话框片段。然后当我旋转屏幕并保存数据时,我的RecyclerView没有更新。我在onCreate方法中设置适配器。我应该再次轮换以查看新数据。如何解决这个问题。
提前致谢。
dataSource = new MyBusinessDataSource(this);
try
{
dataSource.openForRead();
}
catch (SQLException sqlEx)
{
Toast.makeText(MyBusinessMainActivity.this, R.string.sqlite_exception, Toast.LENGTH_SHORT).show();
return;
}
categories = dataSource.getAllCategories();
adapter = new CategoriesAdapter(this, categories);
rv_list_cats.setAdapter(adapter);
dataSource.close();