diff options
author | Tom O'Neill <tomo@google.com> | 2010-01-06 16:32:14 -0800 |
---|---|---|
committer | Android (Google) Code Review <android-gerrit@google.com> | 2010-01-06 16:32:14 -0800 |
commit | f1474e5399192d2eea8ee3a497575057356abc9c (patch) | |
tree | f5f4c6f5544c8bfe3d0a6b3346fc6e6e2824a021 | |
parent | ee2721ed67b4fac1690ec4cfb3b7a21b52927295 (diff) | |
parent | 1c66b17d88f4c9dc0f3e7529320f1900be2edb8b (diff) | |
download | android_development-f1474e5399192d2eea8ee3a497575057356abc9c.tar.gz android_development-f1474e5399192d2eea8ee3a497575057356abc9c.tar.bz2 android_development-f1474e5399192d2eea8ee3a497575057356abc9c.zip |
Merge "Match the tutorial documentation more closely"
-rwxr-xr-x | tutorials/NotepadCodeLab/Notepadv1Solution/res/layout/notes_row.xml | 3 | ||||
-rwxr-xr-x | tutorials/NotepadCodeLab/Notepadv3Solution/src/com/android/demo/notepad3/NoteEdit.java | 3 |
2 files changed, 4 insertions, 2 deletions
diff --git a/tutorials/NotepadCodeLab/Notepadv1Solution/res/layout/notes_row.xml b/tutorials/NotepadCodeLab/Notepadv1Solution/res/layout/notes_row.xml index f28a41bea..e405b5256 100755 --- a/tutorials/NotepadCodeLab/Notepadv1Solution/res/layout/notes_row.xml +++ b/tutorials/NotepadCodeLab/Notepadv1Solution/res/layout/notes_row.xml @@ -1,4 +1,5 @@ <?xml version="1.0" encoding="utf-8"?> -<TextView android:id="@+id/text1" xmlns:android="http://schemas.android.com/apk/res/android" +<TextView android:id="@+id/text1" + xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="wrap_content" android:layout_height="wrap_content"/> diff --git a/tutorials/NotepadCodeLab/Notepadv3Solution/src/com/android/demo/notepad3/NoteEdit.java b/tutorials/NotepadCodeLab/Notepadv3Solution/src/com/android/demo/notepad3/NoteEdit.java index eabb07a4e..b86478452 100755 --- a/tutorials/NotepadCodeLab/Notepadv3Solution/src/com/android/demo/notepad3/NoteEdit.java +++ b/tutorials/NotepadCodeLab/Notepadv3Solution/src/com/android/demo/notepad3/NoteEdit.java @@ -35,13 +35,14 @@ public class NoteEdit extends Activity { super.onCreate(savedInstanceState); mDbHelper = new NotesDbAdapter(this); mDbHelper.open(); - setContentView(R.layout.note_edit); + setContentView(R.layout.note_edit); mTitleText = (EditText) findViewById(R.id.title); mBodyText = (EditText) findViewById(R.id.body); Button confirmButton = (Button) findViewById(R.id.confirm); + mRowId = (savedInstanceState == null) ? null : (Long) savedInstanceState.getSerializable(NotesDbAdapter.KEY_ROWID); if (mRowId == null) { |