예제 #1
0
  private void saveState() {
    String title = mTitleText.getText().toString();
    String body = mBodyText.getText().toString();

    if (mRowId == null) {
      long id = mDbHelper.createNote(title, body);
      if (id > 0) {
        mRowId = id;
      }
    } else {
      mDbHelper.updateNote(mRowId, title, body);
    }
  }