我已经按照本教程进行操作,现在有了自己的 DB Contract 和 DB Helper 类。我在 Activity 中有 DBHelper 变量并将其设置为onCreate()
mDbHelper = new CustomDbHelper(getApplicationContext());
我的问题是:我应该关闭 dbHelperonStop()
还是没有必要?
@Override
protected void onStop() {
super.onStop(); // Always call the superclass method first
mDbHelper.close();
}