<feed xmlns='http://www.w3.org/2005/Atom'>
<title>android_development/tutorials/NotepadCodeLab, branch cm-10.1</title>
<subtitle>Unnamed repository; edit this file 'description' to name the repository.
</subtitle>
<link rel='alternate' type='text/html' href='https://git.replicant.us/mirrors/LineageOS/android_development/'/>
<entry>
<title>update notepad tutorial to change activity  title in NoteEdit class</title>
<updated>2010-06-17T17:04:10+00:00</updated>
<author>
<name>Scott Main</name>
<email>smain@google.com</email>
</author>
<published>2010-06-17T17:04:10+00:00</published>
<link rel='alternate' type='text/html' href='https://git.replicant.us/mirrors/LineageOS/android_development/commit/?id=6409710828865e3dc0aca2d08eb9cdb179145e19'/>
<id>6409710828865e3dc0aca2d08eb9cdb179145e19</id>
<content type='text'>
Change-Id: I58e8919dab1b82696d11e5e578419f30b47b0737
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Change-Id: I58e8919dab1b82696d11e5e578419f30b47b0737
</pre>
</div>
</content>
</entry>
<entry>
<title>Deprecate fill_parent and introduce match_parent.</title>
<updated>2010-01-08T23:11:18+00:00</updated>
<author>
<name>Romain Guy</name>
<email>romainguy@android.com</email>
</author>
<published>2010-01-08T23:05:33+00:00</published>
<link rel='alternate' type='text/html' href='https://git.replicant.us/mirrors/LineageOS/android_development/commit/?id=74192eafec8408417114d77784cd35eda5df573c'/>
<id>74192eafec8408417114d77784cd35eda5df573c</id>
<content type='text'>
Bug: #2361749.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Bug: #2361749.
</pre>
</div>
</content>
</entry>
<entry>
<title>Match the tutorial documentation more closely</title>
<updated>2009-12-17T19:20:00+00:00</updated>
<author>
<name>Tom O'Neill</name>
<email>tomo@google.com</email>
</author>
<published>2009-12-17T19:20:00+00:00</published>
<link rel='alternate' type='text/html' href='https://git.replicant.us/mirrors/LineageOS/android_development/commit/?id=1c66b17d88f4c9dc0f3e7529320f1900be2edb8b'/>
<id>1c66b17d88f4c9dc0f3e7529320f1900be2edb8b</id>
<content type='text'>
Just undoing some white space changes that my previous CL introduced, in
order to keep the formatting the same between the tutorial documentation
and the actual code.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Just undoing some white space changes that my previous CL introduced, in
order to keep the formatting the same between the tutorial documentation
and the actual code.
</pre>
</div>
</content>
</entry>
<entry>
<title>Finish adding Makefiles for the Notepad tutorial.</title>
<updated>2009-12-16T17:54:24+00:00</updated>
<author>
<name>Tom O'Neill</name>
<email>tomo@google.com</email>
</author>
<published>2009-12-15T19:27:15+00:00</published>
<link rel='alternate' type='text/html' href='https://git.replicant.us/mirrors/LineageOS/android_development/commit/?id=77560fc704f2933e0df8a4be0768b2439a0bab2a'/>
<id>77560fc704f2933e0df8a4be0768b2439a0bab2a</id>
<content type='text'>
Add the missing makefiles for the non-solution versions of the tutorial
code.  Required providing missing imports in Notepadv2.  Also standardized
white spaces using Source &gt; Correct Indentation in Eclipse and a few
manual changes.  This was done to minimize differences such as:

diff -r Notepadv1 Notepadv1Solution
diff -r Notepadv1Solution/src/com/android/demo/notepad1/ Notepadv2/src/com/android/demo/notepad2/

Change-Id: Ie8b10efd61f2200b3c741ea500a6924710ab54ed
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Add the missing makefiles for the non-solution versions of the tutorial
code.  Required providing missing imports in Notepadv2.  Also standardized
white spaces using Source &gt; Correct Indentation in Eclipse and a few
manual changes.  This was done to minimize differences such as:

diff -r Notepadv1 Notepadv1Solution
diff -r Notepadv1Solution/src/com/android/demo/notepad1/ Notepadv2/src/com/android/demo/notepad2/

Change-Id: Ie8b10efd61f2200b3c741ea500a6924710ab54ed
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix Notepadv3Solution orientation changes during NoteEdit</title>
<updated>2009-12-12T00:03:52+00:00</updated>
<author>
<name>Tom O'Neill</name>
<email>tomo@google.com</email>
</author>
<published>2009-12-12T00:01:04+00:00</published>
<link rel='alternate' type='text/html' href='https://git.replicant.us/mirrors/LineageOS/android_development/commit/?id=7c21d1cd4051a7aaab5c15d63649315708c6aaa4'/>
<id>7c21d1cd4051a7aaab5c15d63649315708c6aaa4</id>
<content type='text'>
The current NoteEdit.java in Notepadv3Solution crashes on NPE when the
screen orientation changes.  This happens because a null Long is
auto-unboxed to a long when used as an input to
Bundle.putLong(String, long).  The easiest solution is to use
Bundle.putSerializable() instead.

In addition duplicate notepad entries could result because mRowId was not
necessarily defined when onSaveInstanceState(Bundle) was called.  The
solution to that is to call saveState() in that method.

Fixes these buganizer bugs:

Change-Id: Ice325f3b089867e4716deb48aefe8ec03f30ad55
http://b/issue?id=2266994
http://b/issue?id=2266962
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The current NoteEdit.java in Notepadv3Solution crashes on NPE when the
screen orientation changes.  This happens because a null Long is
auto-unboxed to a long when used as an input to
Bundle.putLong(String, long).  The easiest solution is to use
Bundle.putSerializable() instead.

In addition duplicate notepad entries could result because mRowId was not
necessarily defined when onSaveInstanceState(Bundle) was called.  The
solution to that is to call saveState() in that method.

Fixes these buganizer bugs:

Change-Id: Ice325f3b089867e4716deb48aefe8ec03f30ad55
http://b/issue?id=2266994
http://b/issue?id=2266962
</pre>
</div>
</content>
</entry>
<entry>
<title>Add Android.mk files for the Notepad tutorial's solutions</title>
<updated>2009-12-11T19:25:36+00:00</updated>
<author>
<name>Tom O'Neill</name>
<email>tomo@google.com</email>
</author>
<published>2009-12-11T19:25:36+00:00</published>
<link rel='alternate' type='text/html' href='https://git.replicant.us/mirrors/LineageOS/android_development/commit/?id=f2519b444f658d2d7af8f85b0b95d12f32cf8bd2'/>
<id>f2519b444f658d2d7af8f85b0b95d12f32cf8bd2</id>
<content type='text'>
Now the tutorial is built as part of the standard build, but not installed
as part of the system image.  Required localizing an android:text field
that was already localized in Notepadv1 but for some odd reason was no
longer localized in v2 and v3.

Change-Id: I0e1b41a4efa454a503b788b0698593136662a014
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Now the tutorial is built as part of the standard build, but not installed
as part of the system image.  Required localizing an android:text field
that was already localized in Notepadv1 but for some odd reason was no
longer localized in v2 and v3.

Change-Id: I0e1b41a4efa454a503b788b0698593136662a014
</pre>
</div>
</content>
</entry>
<entry>
<title>Extract and check in NotepadCodeLab.zip for change tracking</title>
<updated>2009-12-10T19:02:57+00:00</updated>
<author>
<name>Tom O'Neill</name>
<email>tomo@google.com</email>
</author>
<published>2009-12-09T23:41:05+00:00</published>
<link rel='alternate' type='text/html' href='https://git.replicant.us/mirrors/LineageOS/android_development/commit/?id=94b6d06899ddb3f97cd0171bce5de1cb60602d01'/>
<id>94b6d06899ddb3f97cd0171bce5de1cb60602d01</id>
<content type='text'>
The 3-part Notepad tutorial is currently only available in the zip archive
frameworks/base/docs/html/guide/tutorials/notepad/codelab/NotepadCodeLab.zip.
This CL adds the uncompressed code to the repository so that there is a
paper trail of future changes to the code.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The 3-part Notepad tutorial is currently only available in the zip archive
frameworks/base/docs/html/guide/tutorials/notepad/codelab/NotepadCodeLab.zip.
This CL adds the uncompressed code to the repository so that there is a
paper trail of future changes to the code.
</pre>
</div>
</content>
</entry>
</feed>
