diff --git a/docs/html/resources/tutorials/notepad/codelab/NotepadCodeLab.zip b/docs/html/resources/tutorials/notepad/codelab/NotepadCodeLab.zip index 502a326c3c1fa..cd30f291587a7 100644 Binary files a/docs/html/resources/tutorials/notepad/codelab/NotepadCodeLab.zip and b/docs/html/resources/tutorials/notepad/codelab/NotepadCodeLab.zip differ diff --git a/docs/html/resources/tutorials/notepad/notepad-ex2.jd b/docs/html/resources/tutorials/notepad/notepad-ex2.jd index a945a62f7dae5..289b5feb186bc 100644 --- a/docs/html/resources/tutorials/notepad/notepad-ex2.jd +++ b/docs/html/resources/tutorials/notepad/notepad-ex2.jd @@ -393,7 +393,11 @@ case ACTIVITY_EDIT:
setContentView(R.layout.note_edit);
  • - Find the edit and button components we need: + Change the Activity title to the "Edit Note" string: +
    setTitle(R.string.edit_note);
    +
  • +
  • + Find the {@link android.widget.EditText} and {@link android.widget.Button} components we need:

    These are found by the IDs associated to them in the R class, and need to be cast to the right type of View (EditText for the two text views,