You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A NullPointerException may occur in DrinkCategoryActivity.java from Chapter 12 after calling the onDestroy() method if "cursor" or "db" objects are null (e.g., after rotating the device when having the Drink Categories list on screen).
@Override public void onDestroy() { super.onDestroy(); cursor.close(); db.close(); }
Need to do a null check on variables "cursor" and "db".
The text was updated successfully, but these errors were encountered:
A NullPointerException may occur in DrinkCategoryActivity.java from Chapter 12 after calling the onDestroy() method if "cursor" or "db" objects are null (e.g., after rotating the device when having the Drink Categories list on screen).
@Override public void onDestroy() { super.onDestroy(); cursor.close(); db.close(); }
Need to do a null check on variables "cursor" and "db".
The text was updated successfully, but these errors were encountered: