summaryrefslogtreecommitdiffstats
path: root/tutorials
Commit message (Collapse)AuthorAgeFilesLines
* Add missing includes.Elliott Hughes2015-01-294-0/+4
| | | | Change-Id: I0abe45677d9a5f43aa1db754102701093ff19204
* Add "Force a Double Free" button to stress test the tools.Ben Cheng2013-09-166-0/+70
| | | | Change-Id: I52bf2f42c9a6040ac345248473d7184b7266f511
* Add a new example/unittest for GDB's reverse debugging feature.Ben Cheng2013-06-243-0/+211
| | | | Change-Id: Ic55343957cd35dc41d2dcf9f436d1940cd454084
* New tutorial app for DDMS native heap tracker.Ben Cheng2013-05-2921-0/+568
| | | | Change-Id: Ia8d35bc1ee44c6aaffe6fa10c6339edfa053aba4
* update notepad tutorial to change activity title in NoteEdit classScott Main2010-06-173-0/+3
| | | | Change-Id: I58e8919dab1b82696d11e5e578419f30b47b0737
* Deprecate fill_parent and introduce match_parent.Romain Guy2010-01-084-16/+16
| | | | Bug: #2361749.
* Match the tutorial documentation more closelyTom O'Neill2009-12-172-2/+4
| | | | | | 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.
* Finish adding Makefiles for the Notepad tutorial.Tom O'Neill2009-12-1625-218/+315
| | | | | | | | | | | | 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 > 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
* Fix Notepadv3Solution orientation changes during NoteEditTom O'Neill2009-12-111-3/+4
| | | | | | | | | | | | | | | | | | 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
* Add Android.mk files for the Notepad tutorial's solutionsTom O'Neill2009-12-117-4/+94
| | | | | | | | | 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
* Extract and check in NotepadCodeLab.zip for change trackingTom O'Neill2009-12-1048-0/+2401
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.