The Android Open Source Project | 52d4c30 | 2009-03-03 19:29:09 -0800 | [diff] [blame] | 1 | <p>A simple note pad application. |
Scott Main | 0468085 | 2009-08-24 15:27:00 -0700 | [diff] [blame] | 2 | It demonstrates:</p> |
The Android Open Source Project | 52d4c30 | 2009-03-03 19:29:09 -0800 | [diff] [blame] | 3 | <ul> |
Scott Main | 0468085 | 2009-08-24 15:27:00 -0700 | [diff] [blame] | 4 | <li>Using views</li> |
| 5 | <li>Accessing a database</li> |
| 6 | <li>Using an intent to open a new window</li> |
| 7 | <li>Managing activity lifecycle</li> |
Roman Nurik | a717880 | 2009-11-23 17:11:04 -0500 | [diff] [blame] | 8 | <li>Creating <a href="../../../reference/android/provider/LiveFolders.html">Live Folders</a></li> |
Scott Main | 0468085 | 2009-08-24 15:27:00 -0700 | [diff] [blame] | 9 | <li>And more...</li> |
The Android Open Source Project | 52d4c30 | 2009-03-03 19:29:09 -0800 | [diff] [blame] | 10 | </ul> |
Scott Main | 0468085 | 2009-08-24 15:27:00 -0700 | [diff] [blame] | 11 | |
| 12 | <p class="note">Please notice that this is not the same |
Scott Main | 50992e8 | 2009-08-29 13:08:18 -0700 | [diff] [blame] | 13 | notepad code that's used for the <a href="../../../guide/tutorials/notepad/index.html">Notepad Tutorial</a>. |
Scott Main | 0468085 | 2009-08-24 15:27:00 -0700 | [diff] [blame] | 14 | They are similar in nature, but there are several differences in implementation — the tutorial |
| 15 | is slightly more simple. If you're new to |
| 16 | Android development, we suggest you start with the tutorial, then visit this |
| 17 | code later to see more sample code.</p> |
| 18 | |
Scott Main | 50992e8 | 2009-08-29 13:08:18 -0700 | [diff] [blame] | 19 | <img alt="" src="../images/sample_notepad.png" /> |
| 20 | <img alt="" src="../images/sample_note.png" /> |