protected void onResume()

in notepad/app/src/main/java/com/example/android/notepad/TitleEditor.java [87:95]


    protected void onResume() {
        super.onResume();

        // Initialize the text with the title column from the cursor
        if (mCursor != null) {
            mCursor.moveToFirst();
            mText.setText(mCursor.getString(COLUMN_INDEX_TITLE));
        }
    }