OSDN Git Service

android-x86/ndk.git
14 years agoam a0e762ca: free the NPObject in NPP_Destroy.
Grace Kloba [Mon, 4 Jan 2010 17:59:45 +0000 (09:59 -0800)]
am a0e762ca: free the NPObject in NPP_Destroy.

Merge commit 'a0e762caeaca275ed8390e9ee1cfb5e9149e07b7' into eclair-mr2-plus-aosp

* commit 'a0e762caeaca275ed8390e9ee1cfb5e9149e07b7':
  free the NPObject in NPP_Destroy.

14 years agofree the NPObject in NPP_Destroy.
Grace Kloba [Sun, 27 Dec 2009 21:21:41 +0000 (13:21 -0800)]
free the NPObject in NPP_Destroy.

14 years agoam 3bc69e62: Merge change Ib59457e0 into eclair-mr2
Grace Kloba [Wed, 16 Dec 2009 22:21:19 +0000 (14:21 -0800)]
am 3bc69e62: Merge change Ib59457e0 into eclair-mr2

Merge commit '3bc69e6256b616514871276e24bf98f37b3f89ad' into eclair-mr2-plus-aosp

* commit '3bc69e6256b616514871276e24bf98f37b3f89ad':
  Change full screen surface to Opaque as it is required

14 years agoMerge change Ib59457e0 into eclair-mr2
Android (Google) Code Review [Wed, 16 Dec 2009 22:16:45 +0000 (14:16 -0800)]
Merge change Ib59457e0 into eclair-mr2

* changes:
  Change full screen surface to Opaque as it is required by the new plugin model.

14 years agoChange full screen surface to Opaque as it is required
Grace Kloba [Wed, 16 Dec 2009 19:38:53 +0000 (11:38 -0800)]
Change full screen surface to Opaque as it is required
by the new plugin model.

Comment out the video as it is not working and causes
crash when touch.

14 years agoam 53a8ae60: Merge changes I84cafc84,Idc388c56 into eclair-mr2
Ying Wang [Wed, 16 Dec 2009 18:47:41 +0000 (10:47 -0800)]
am 53a8ae60: Merge changes I84cafc84,Idc388c56 into eclair-mr2

Merge commit '53a8ae6060ad02b9e2747455d3b5e4229a82e051' into eclair-mr2-plus-aosp

* commit '53a8ae6060ad02b9e2747455d3b5e4229a82e051':
  Package blacklist/whitelist file support for Monkey.

14 years agoMerge changes I84cafc84,Idc388c56 into eclair-mr2
Android (Google) Code Review [Wed, 16 Dec 2009 18:43:43 +0000 (10:43 -0800)]
Merge changes I84cafc84,Idc388c56 into eclair-mr2

* changes:
  Merge commit 'goog/eclair-mr2' into play-with-monkey
  Package blacklist/whitelist file support for Monkey.

14 years agoam 7dbb3c29: moved the hidden sync helpers out of the framework
Fred Quintana [Tue, 15 Dec 2009 00:37:58 +0000 (16:37 -0800)]
am 7dbb3c29: moved the hidden sync helpers out of the framework

Merge commit '7dbb3c2900e206c1468868e195fc37bf2d4932b1' into eclair-mr2-plus-aosp

* commit '7dbb3c2900e206c1468868e195fc37bf2d4932b1':
  moved the hidden sync helpers out of the framework

14 years agoMerge commit 'goog/eclair-mr2' into play-with-monkey
Ying Wang [Tue, 15 Dec 2009 00:23:32 +0000 (16:23 -0800)]
Merge commit 'goog/eclair-mr2' into play-with-monkey

Conflicts:

cmds/monkey/src/com/android/commands/monkey/Monkey.java

14 years agoam 5595acbe: Merge change Ice325f3b into eclair-mr2
Tom O'Neill [Mon, 14 Dec 2009 23:24:09 +0000 (15:24 -0800)]
am 5595acbe: Merge change Ice325f3b into eclair-mr2

Merge commit '5595acbed8ca1778a61881a00d7baaffecb2a64c' into eclair-mr2-plus-aosp

* commit '5595acbed8ca1778a61881a00d7baaffecb2a64c':
  Fix Notepadv3Solution orientation changes during NoteEdit

14 years agomoved the hidden sync helpers out of the framework
Fred Quintana [Fri, 11 Dec 2009 21:18:02 +0000 (13:18 -0800)]
moved the hidden sync helpers out of the framework

14 years agoMerge change Ice325f3b into eclair-mr2
Android (Google) Code Review [Mon, 14 Dec 2009 19:50:14 +0000 (11:50 -0800)]
Merge change Ice325f3b into eclair-mr2

* changes:
  Fix Notepadv3Solution orientation changes during NoteEdit

14 years agoam ec30731d: am 2276398d: Merge change I0d9344aa into eclair
vchtchetkine [Sun, 13 Dec 2009 20:32:03 +0000 (12:32 -0800)]
am ec30731d: am 2276398d: Merge change I0d9344aa into eclair

Merge commit 'ec30731d8f415a427f15280bdc14ea6c54f5904d' into eclair-mr2-plus-aosp

* commit 'ec30731d8f415a427f15280bdc14ea6c54f5904d':
  Fixed

14 years agoam 2276398d: Merge change I0d9344aa into eclair
vchtchetkine [Sun, 13 Dec 2009 20:23:31 +0000 (12:23 -0800)]
am 2276398d: Merge change I0d9344aa into eclair

Merge commit '2276398db0b0208b7627dc436ecc9e6c09e68107' into eclair-mr2

* commit '2276398db0b0208b7627dc436ecc9e6c09e68107':
  Fixed

14 years agoFix Notepadv3Solution orientation changes during NoteEdit
Tom O'Neill [Sat, 12 Dec 2009 00:01:04 +0000 (16:01 -0800)]
Fix Notepadv3Solution orientation changes during NoteEdit

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

14 years agoam d0225ee6: Remove the old Dev Tools exception browser (since it relies on now elimi...
Dan Egnor [Fri, 11 Dec 2009 22:22:33 +0000 (14:22 -0800)]
am d0225ee6: Remove the old Dev Tools exception browser (since it relies on now eliminated checkin database crash storage functionality).

Merge commit 'd0225ee63f305ef59e17f8ad0dc16b2ef5e85af0' into eclair-mr2-plus-aosp

* commit 'd0225ee63f305ef59e17f8ad0dc16b2ef5e85af0':
  Remove the old Dev Tools exception browser (since it relies on

14 years agoMerge change I0d9344aa into eclair
Android (Google) Code Review [Fri, 11 Dec 2009 21:29:37 +0000 (13:29 -0800)]
Merge change I0d9344aa into eclair

* changes:
  Fixed

14 years agoRemove the old Dev Tools exception browser (since it relies on
Dan Egnor [Thu, 10 Dec 2009 00:30:23 +0000 (16:30 -0800)]
Remove the old Dev Tools exception browser (since it relies on
now eliminated checkin database crash storage functionality).

Add a new test app to Dev Tools, "Bad Behavior", which has
buttons to crash and generate an ANR on command.

Update the Monkey to follow changed APIs.

14 years agoam f2519b44: Add Android.mk files for the Notepad tutorial\'s solutions
Tom O'Neill [Fri, 11 Dec 2009 20:31:25 +0000 (12:31 -0800)]
am f2519b44: Add Android.mk files for the Notepad tutorial\'s solutions

Merge commit 'f2519b444f658d2d7af8f85b0b95d12f32cf8bd2' into eclair-mr2-plus-aosp

* commit 'f2519b444f658d2d7af8f85b0b95d12f32cf8bd2':
  Add Android.mk files for the Notepad tutorial's solutions

14 years agoFixed
vchtchetkine [Fri, 11 Dec 2009 15:14:38 +0000 (07:14 -0800)]
Fixed

14 years agoAdd Android.mk files for the Notepad tutorial's solutions
Tom O'Neill [Fri, 11 Dec 2009 19:25:36 +0000 (11:25 -0800)]
Add Android.mk files for the Notepad tutorial's solutions

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

14 years agoam 79ace486: am 7579e4af: Merge change I9fb303e6 into eclair
Xavier Ducrohet [Fri, 11 Dec 2009 03:54:51 +0000 (19:54 -0800)]
am 79ace486: am 7579e4af: Merge change I9fb303e6 into eclair

Merge commit '79ace48637207ba918a19d55acd9eeda700ff203' into eclair-mr2-plus-aosp

* commit '79ace48637207ba918a19d55acd9eeda700ff203':
  Add new samples to the SDK.

14 years agoam 70634b36: am e7e7a6b8: Modify index pages of MultiResolution, Wiktionary, and...
Roman Nurik [Fri, 11 Dec 2009 03:54:47 +0000 (19:54 -0800)]
am 70634b36: am e7e7a6b8: Modify index pages of MultiResolution, Wiktionary, and WiktionarySimple samples, to point to new screenshots. Also some minor cleanup.

Merge commit '70634b3633dc2847df14db67a4e22dce5a16e45f' into eclair-mr2-plus-aosp

* commit '70634b3633dc2847df14db67a4e22dce5a16e45f':
  Modify index pages of MultiResolution, Wiktionary, and WiktionarySimple samples, to point to new screenshots. Also some minor cleanup.

14 years agoam 7579e4af: Merge change I9fb303e6 into eclair
Xavier Ducrohet [Fri, 11 Dec 2009 03:48:51 +0000 (19:48 -0800)]
am 7579e4af: Merge change I9fb303e6 into eclair

Merge commit '7579e4afcff771ed7e137b46bd019acd581c9568' into eclair-mr2

* commit '7579e4afcff771ed7e137b46bd019acd581c9568':
  Add new samples to the SDK.

14 years agoam e7e7a6b8: Modify index pages of MultiResolution, Wiktionary, and WiktionarySimple...
Roman Nurik [Fri, 11 Dec 2009 03:48:38 +0000 (19:48 -0800)]
am e7e7a6b8: Modify index pages of MultiResolution, Wiktionary, and WiktionarySimple samples, to point to new screenshots. Also some minor cleanup.

Merge commit 'e7e7a6b821367c5c2ce7a0eac66f92a2689c22e9' into eclair-mr2

* commit 'e7e7a6b821367c5c2ce7a0eac66f92a2689c22e9':
  Modify index pages of MultiResolution, Wiktionary, and WiktionarySimple samples, to point to new screenshots. Also some minor cleanup.

14 years agoam 5f6b6bfb: am 0359bdb7: Merge change I2b0bb983 into eclair
Trevor Johns [Fri, 11 Dec 2009 01:51:34 +0000 (17:51 -0800)]
am 5f6b6bfb: am 0359bdb7: Merge change I2b0bb983 into eclair

Merge commit '5f6b6bfb881601bdcb65c274449ffad08df5b29b' into eclair-mr2-plus-aosp

* commit '5f6b6bfb881601bdcb65c274449ffad08df5b29b':
  Importing Wikitionary/SimpleWiktionary sample code from http://code.google.com/p/wiktionary-android/.

14 years agoam 04df8565: am 1fd97693: Merge change Ia13e890e into eclair
David 'Digit' Turner [Fri, 11 Dec 2009 01:51:30 +0000 (17:51 -0800)]
am 04df8565: am 1fd97693: Merge change Ia13e890e into eclair

Merge commit '04df8565bf8f2b81a632fcd736cb96c8da478b9e' into eclair-mr2-plus-aosp

* commit '04df8565bf8f2b81a632fcd736cb96c8da478b9e':
  Update documentation to indicate EGL ES 2.0 isn't supported in the emulator.

14 years agoam 0359bdb7: Merge change I2b0bb983 into eclair
Trevor Johns [Fri, 11 Dec 2009 01:44:35 +0000 (17:44 -0800)]
am 0359bdb7: Merge change I2b0bb983 into eclair

Merge commit '0359bdb72f3da3f319d0b3ef87a70c4f98d4154f' into eclair-mr2

* commit '0359bdb72f3da3f319d0b3ef87a70c4f98d4154f':
  Importing Wikitionary/SimpleWiktionary sample code from http://code.google.com/p/wiktionary-android/.

14 years agoam 1fd97693: Merge change Ia13e890e into eclair
David 'Digit' Turner [Fri, 11 Dec 2009 01:40:07 +0000 (17:40 -0800)]
am 1fd97693: Merge change Ia13e890e into eclair

Merge commit '1fd97693dc03fac4e189e5361a7ac7ee033caff2' into eclair-mr2

* commit '1fd97693dc03fac4e189e5361a7ac7ee033caff2':
  Update documentation to indicate EGL ES 2.0 isn't supported in the emulator.

14 years agoam 036832ad: Merge change Ic944ab1e into eclair-mr2
Tom O'Neill [Fri, 11 Dec 2009 01:21:48 +0000 (17:21 -0800)]
am 036832ad: Merge change Ic944ab1e into eclair-mr2

Merge commit '036832adba9d953f8d34ece1bd5b049f02437928' into eclair-mr2-plus-aosp

* commit '036832adba9d953f8d34ece1bd5b049f02437928':
  Extract and check in NotepadCodeLab.zip for change tracking

14 years agoMerge change Ic944ab1e into eclair-mr2
Android (Google) Code Review [Fri, 11 Dec 2009 01:16:32 +0000 (17:16 -0800)]
Merge change Ic944ab1e into eclair-mr2

* changes:
  Extract and check in NotepadCodeLab.zip for change tracking

14 years agoMerge change I9fb303e6 into eclair
Android (Google) Code Review [Fri, 11 Dec 2009 01:12:47 +0000 (17:12 -0800)]
Merge change I9fb303e6 into eclair

* changes:
  Add new samples to the SDK.

14 years agoam dcf99fbe: Merge change If4ff28ed into eclair-mr2
Romain Guy [Fri, 11 Dec 2009 00:58:46 +0000 (16:58 -0800)]
am dcf99fbe: Merge change If4ff28ed into eclair-mr2

Merge commit 'dcf99fbe7ac981c4ef3c8def65213e148281547a' into eclair-mr2-plus-aosp

* commit 'dcf99fbe7ac981c4ef3c8def65213e148281547a':
  Cleanup one of the ListView sample demos.

14 years agoam 4eb4ed2d: am bba4ff7c: Fixing crash in ContactManager: Changing ContactsContract...
Trevor Johns [Fri, 11 Dec 2009 00:55:06 +0000 (16:55 -0800)]
am 4eb4ed2d: am bba4ff7c: Fixing crash in ContactManager: Changing ContactsContract.Contacts.LOOKUP_KEY to ContactsContract.Contacts._ID.

Merge commit '4eb4ed2d19c498998bb9560c71873fa6657d0644' into eclair-mr2-plus-aosp

* commit '4eb4ed2d19c498998bb9560c71873fa6657d0644':
  Fixing crash in ContactManager: Changing ContactsContract.Contacts.LOOKUP_KEY to

14 years agoAdd new samples to the SDK.
Xavier Ducrohet [Fri, 11 Dec 2009 00:54:52 +0000 (16:54 -0800)]
Add new samples to the SDK.

Change-Id: I9fb303e6b6f6fb00172f4f5bf64a2c56649c2491

14 years agoMerge change If4ff28ed into eclair-mr2
Android (Google) Code Review [Fri, 11 Dec 2009 00:51:41 +0000 (16:51 -0800)]
Merge change If4ff28ed into eclair-mr2

* changes:
  Cleanup one of the ListView sample demos.

14 years agoam bba4ff7c: Fixing crash in ContactManager: Changing ContactsContract.Contacts.LOOKU...
Trevor Johns [Fri, 11 Dec 2009 00:45:44 +0000 (16:45 -0800)]
am bba4ff7c: Fixing crash in ContactManager: Changing ContactsContract.Contacts.LOOKUP_KEY to ContactsContract.Contacts._ID.

Merge commit 'bba4ff7c38e7e6837fabdb225cdb24d12a17eabc' into eclair-mr2

* commit 'bba4ff7c38e7e6837fabdb225cdb24d12a17eabc':
  Fixing crash in ContactManager: Changing ContactsContract.Contacts.LOOKUP_KEY to

14 years agoCleanup one of the ListView sample demos.
Romain Guy [Thu, 10 Dec 2009 23:19:03 +0000 (15:19 -0800)]
Cleanup one of the ListView sample demos.

14 years agoExtract and check in NotepadCodeLab.zip for change tracking
Tom O'Neill [Wed, 9 Dec 2009 23:41:05 +0000 (15:41 -0800)]
Extract and check in NotepadCodeLab.zip for change tracking

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.

14 years agoPackage blacklist/whitelist file support for Monkey.
Ying Wang [Tue, 8 Dec 2009 22:59:43 +0000 (14:59 -0800)]
Package blacklist/whitelist file support for Monkey.

With this CL, you can specify a package whitelist file or a package blacklist file,
but not both. You can not specify both individual packages via -p and blacklist file,
either. But you can specify both whitelist file and individual packages via -p and they
will be summed up.

14 years agoModify index pages of MultiResolution, Wiktionary, and WiktionarySimple samples,...
Roman Nurik [Thu, 10 Dec 2009 17:43:24 +0000 (09:43 -0800)]
Modify index pages of MultiResolution, Wiktionary, and WiktionarySimple samples, to point to new screenshots. Also some minor cleanup.

14 years agoMerge change I2b0bb983 into eclair
Android (Google) Code Review [Thu, 10 Dec 2009 02:07:31 +0000 (18:07 -0800)]
Merge change I2b0bb983 into eclair

* changes:
  Importing Wikitionary/SimpleWiktionary sample code from http://code.google.com/p/wiktionary-android/.

14 years agoMerge change Ia13e890e into eclair
Android (Google) Code Review [Thu, 10 Dec 2009 00:02:14 +0000 (16:02 -0800)]
Merge change Ia13e890e into eclair

* changes:
  Update documentation to indicate EGL ES 2.0 isn't supported in the emulator.

14 years agoam 2c0f89aa: Update SampleBrowserPlugin to show handling long press and double tap...
Grace Kloba [Thu, 10 Dec 2009 00:01:30 +0000 (16:01 -0800)]
am 2c0f89aa: Update SampleBrowserPlugin to show handling long press and double tap events.

Merge commit '2c0f89aaf61d62ac2f28ff3e46db6ba27983c6e5' into eclair-mr2-plus-aosp

* commit '2c0f89aaf61d62ac2f28ff3e46db6ba27983c6e5':
  Update SampleBrowserPlugin to show handling

14 years agoam 3c31d6cd: Simple Matrix Palette skinning sample.
Jack Palevich [Wed, 9 Dec 2009 23:59:16 +0000 (15:59 -0800)]
am 3c31d6cd: Simple Matrix Palette skinning sample.

Merge commit '3c31d6cded51b6e6719b0052ec9987ca7218c868' into eclair-mr2-plus-aosp

* commit '3c31d6cded51b6e6719b0052ec9987ca7218c868':
  Simple Matrix Palette skinning sample.

14 years agoam 5dc44989: Add OpenGL ES 2.0 sample.
Jack Palevich [Wed, 9 Dec 2009 23:59:12 +0000 (15:59 -0800)]
am 5dc44989: Add OpenGL ES 2.0 sample.

Merge commit '5dc449896cb596159652d15e7333d74e53601609' into eclair-mr2-plus-aosp

* commit '5dc449896cb596159652d15e7333d74e53601609':
  Add OpenGL ES 2.0 sample.

14 years agoam 37fbca22: am 5865825d: Merge change Iabe9529e into eclair
Trevor Johns [Wed, 9 Dec 2009 23:56:43 +0000 (15:56 -0800)]
am 37fbca22: am 5865825d: Merge change Iabe9529e into eclair

Merge commit '37fbca223a683b1d914b7b26eaf79da6c29aa113' into eclair-mr2-plus-aosp

* commit '37fbca223a683b1d914b7b26eaf79da6c29aa113':
  Adding ContactManager sample to SDK samples.

14 years agoam 441b80ab: am 6b4bd260: Merge change I1cd5c828 into eclair
Scott Main [Wed, 9 Dec 2009 23:55:47 +0000 (15:55 -0800)]
am 441b80ab: am 6b4bd260: Merge change I1cd5c828 into eclair

Merge commit '441b80ab3795cb9f02afa7a7397dccd7c17c0cdd' into eclair-mr2-plus-aosp

* commit '441b80ab3795cb9f02afa7a7397dccd7c17c0cdd':
  change the way bytes are read from InputStream.

14 years agoam 1b5a89a2: am d2962a33: TextToSpeech API demo.
James Yum [Wed, 9 Dec 2009 23:54:38 +0000 (15:54 -0800)]
am 1b5a89a2: am d2962a33: TextToSpeech API demo.

Merge commit '1b5a89a2041586eba7211e996d4de9a5300e8b2d' into eclair-mr2-plus-aosp

* commit '1b5a89a2041586eba7211e996d4de9a5300e8b2d':
  TextToSpeech API demo.

14 years agoam 863270d1: Merge change I5ba25302 into eclair-mr2
Nicolas Catania [Wed, 9 Dec 2009 23:47:48 +0000 (15:47 -0800)]
am 863270d1: Merge change I5ba25302 into eclair-mr2

Merge commit '863270d143ab4d496029f8417094187061e74ef2' into eclair-mr2-plus-aosp

* commit '863270d143ab4d496029f8417094187061e74ef2':
  Added the new phone app unittest to runtest.

14 years agoUpdate documentation to indicate EGL ES 2.0 isn't supported in the emulator.
David 'Digit' Turner [Wed, 9 Dec 2009 23:46:07 +0000 (15:46 -0800)]
Update documentation to indicate EGL ES 2.0 isn't supported in the emulator.

14 years agoam e8454e79: updating sample plugin to use new full screen interfaces.
Derek Sollenberger [Wed, 9 Dec 2009 23:44:43 +0000 (15:44 -0800)]
am e8454e79: updating sample plugin to use new full screen interfaces.

Merge commit 'e8454e7969c4bc34d6f4a98ff27ffbf8dde20e4f' into eclair-mr2-plus-aosp

* commit 'e8454e7969c4bc34d6f4a98ff27ffbf8dde20e4f':
  updating sample plugin to use new full screen interfaces.

14 years agoam 579c7f19: Reorganize Service API demos.
Dianne Hackborn [Wed, 9 Dec 2009 23:41:08 +0000 (15:41 -0800)]
am 579c7f19: Reorganize Service API demos.

Merge commit '579c7f19ac379294822b976b73fe4037f40eba82' into eclair-mr2-plus-aosp

* commit '579c7f19ac379294822b976b73fe4037f40eba82':
  Reorganize Service API demos.

14 years agoresolved conflicts for merge of fa3d6b54 to eclair-mr2-plus-aosp
Andrew Stadler [Wed, 9 Dec 2009 20:07:31 +0000 (12:07 -0800)]
resolved conflicts for merge of fa3d6b54 to eclair-mr2-plus-aosp

14 years agoImporting Wikitionary/SimpleWiktionary sample code from http://code.google.com/p...
Trevor Johns [Tue, 8 Dec 2009 01:04:53 +0000 (17:04 -0800)]
Importing Wikitionary/SimpleWiktionary sample code from code.google.com/p/wiktionary-android/.

Original code by Jeffrey Sharkey <jsharkey@android.com>.

Modifications:

- Remove .classpath, .project, and default.properties.
- Remove generated files (/gen).
- Create Android.mk and _index.html.
- Cleaned up whitespace and converted to match AOSP style guide.
- Renamed SimpleWiktionary to WiktionarySimple to keep both samples next to each other in the
  directory listing.
- Removed the android:text attribute in the BulletPoint due to localization issues.

14 years agoUpdate SampleBrowserPlugin to show handling
Grace Kloba [Wed, 9 Dec 2009 08:13:05 +0000 (00:13 -0800)]
Update SampleBrowserPlugin to show handling
long press and double tap events.

14 years agoSimple Matrix Palette skinning sample.
Jack Palevich [Wed, 9 Dec 2009 07:32:35 +0000 (15:32 +0800)]
Simple Matrix Palette skinning sample.

14 years agoAdd OpenGL ES 2.0 sample.
Jack Palevich [Fri, 27 Nov 2009 11:54:46 +0000 (19:54 +0800)]
Add OpenGL ES 2.0 sample.

This sample renders a textured triangle using OpenGL ES 2.0.

If OpenGL ES 2.0 is not available, the sample falls back to
using OpenGL ES 1.0.

14 years agoFixing crash in ContactManager: Changing ContactsContract.Contacts.LOOKUP_KEY to
Trevor Johns [Wed, 9 Dec 2009 07:23:53 +0000 (23:23 -0800)]
Fixing crash in ContactManager: Changing ContactsContract.Contacts.LOOKUP_KEY to
ContactsContract.Contacts._ID.

14 years agoam 5865825d: Merge change Iabe9529e into eclair
Trevor Johns [Wed, 9 Dec 2009 01:53:44 +0000 (17:53 -0800)]
am 5865825d: Merge change Iabe9529e into eclair

Merge commit '5865825df6792f1cf6a5f70911f5ad15a2a243b8' into eclair-mr2

* commit '5865825df6792f1cf6a5f70911f5ad15a2a243b8':
  Adding ContactManager sample to SDK samples.

14 years agoMerge change Iabe9529e into eclair
Android (Google) Code Review [Wed, 9 Dec 2009 01:50:19 +0000 (17:50 -0800)]
Merge change Iabe9529e into eclair

* changes:
  Adding ContactManager sample to SDK samples.

14 years agoAdding ContactManager sample to SDK samples.
Trevor Johns [Tue, 24 Nov 2009 13:16:35 +0000 (05:16 -0800)]
Adding ContactManager sample to SDK samples.

This sample demonstrates use of the ContactsContract classes introduced in API Level 5.

14 years agoam 6b4bd260: Merge change I1cd5c828 into eclair
Scott Main [Wed, 9 Dec 2009 00:47:50 +0000 (16:47 -0800)]
am 6b4bd260: Merge change I1cd5c828 into eclair

Merge commit '6b4bd26058d9d4d920e6a26c14a8f8bda9a863a3' into eclair-mr2

* commit '6b4bd26058d9d4d920e6a26c14a8f8bda9a863a3':
  change the way bytes are read from InputStream.

14 years agoMerge change I1cd5c828 into eclair
Android (Google) Code Review [Wed, 9 Dec 2009 00:44:40 +0000 (16:44 -0800)]
Merge change I1cd5c828 into eclair

* changes:
  change the way bytes are read from InputStream. Read only the bytes received and don't allocate new arrays Also revise the mechanism for writing the outgoing messages to the screen to be more consistent with reading and cleanup line lengths to be <100 chars.

14 years agochange the way bytes are read from InputStream.
Scott Main [Tue, 8 Dec 2009 22:50:17 +0000 (14:50 -0800)]
change the way bytes are read from InputStream.
Read only the bytes received and don't allocate new arrays
Also revise the mechanism for writing the outgoing messages
to the screen to be more consistent with reading and
cleanup line lengths to be <100 chars.

14 years agoam d2962a33: TextToSpeech API demo.
James Yum [Wed, 9 Dec 2009 00:13:06 +0000 (16:13 -0800)]
am d2962a33: TextToSpeech API demo.

Merge commit 'd2962a33216ce40a526c80fc8865cf9bd04936f4' into eclair-mr2

* commit 'd2962a33216ce40a526c80fc8865cf9bd04936f4':
  TextToSpeech API demo.

14 years agoMerge change I5ba25302 into eclair-mr2
Android (Google) Code Review [Tue, 8 Dec 2009 18:49:26 +0000 (10:49 -0800)]
Merge change I5ba25302 into eclair-mr2

* changes:
  Added the new phone app unittest to runtest.

14 years agoupdating sample plugin to use new full screen interfaces.
Derek Sollenberger [Mon, 7 Dec 2009 21:31:54 +0000 (16:31 -0500)]
updating sample plugin to use new full screen interfaces.

14 years agoAdded the new phone app unittest to runtest.
Nicolas Catania [Mon, 7 Dec 2009 21:03:13 +0000 (13:03 -0800)]
Added the new phone app unittest to runtest.

Used phone-unit for the test name because 'phone'
is already taken by a package under '/vendor'.

14 years agoTextToSpeech API demo.
James Yum [Thu, 3 Dec 2009 01:10:20 +0000 (17:10 -0800)]
TextToSpeech API demo.

14 years agoReorganize Service API demos.
Dianne Hackborn [Fri, 4 Dec 2009 23:31:04 +0000 (15:31 -0800)]
Reorganize Service API demos.

This collapses multiple related files in one, to make it easier to deal
with in documentation and elsewhere.

14 years agoam 0cf6092e: am 11d89599: Add QuickContactsBadge widget sample to ApiDemos
Megha Joshi [Tue, 8 Dec 2009 01:03:40 +0000 (17:03 -0800)]
am 0cf6092e: am 11d89599: Add QuickContactsBadge widget sample to ApiDemos

Merge commit '0cf6092e742fbf95722e596f0d4e808e87ac6ce2' into eclair-mr2-plus-aosp

* commit '0cf6092e742fbf95722e596f0d4e808e87ac6ce2':
  Add QuickContactsBadge widget sample to ApiDemos

14 years agoMerge change Ifc1b1ccb into eclair-mr2
Android (Google) Code Review [Tue, 8 Dec 2009 00:59:07 +0000 (16:59 -0800)]
Merge change Ifc1b1ccb into eclair-mr2

* changes:
  Fix eclipse build

14 years agoam 11d89599: Add QuickContactsBadge widget sample to ApiDemos
Megha Joshi [Tue, 8 Dec 2009 00:59:00 +0000 (16:59 -0800)]
am 11d89599: Add QuickContactsBadge widget sample to ApiDemos

Merge commit '11d89599ef7cf949bfe0048d1352f264ee0f6a34' into eclair-mr2

* commit '11d89599ef7cf949bfe0048d1352f264ee0f6a34':
  Add QuickContactsBadge widget sample to ApiDemos

14 years agoAdd QuickContactsBadge widget sample to ApiDemos
Megha Joshi [Fri, 13 Nov 2009 19:45:19 +0000 (11:45 -0800)]
Add QuickContactsBadge widget sample to ApiDemos

14 years agoam bd642f3e: Make the simulator use alsa instead of esound.
Marco Nelissen [Tue, 8 Dec 2009 00:02:40 +0000 (16:02 -0800)]
am bd642f3e: Make the simulator use alsa instead of esound.

Merge commit 'bd642f3e94f4cb94cbb48646ae61da5f6b18a093' into eclair-mr2-plus-aosp

* commit 'bd642f3e94f4cb94cbb48646ae61da5f6b18a093':
  Make the simulator use alsa instead of esound.

14 years agoMake the simulator use alsa instead of esound.
Marco Nelissen [Fri, 4 Dec 2009 23:50:25 +0000 (15:50 -0800)]
Make the simulator use alsa instead of esound.

14 years agoFix eclipse build
Andrew Stadler [Mon, 7 Dec 2009 18:55:39 +0000 (10:55 -0800)]
Fix eclipse build

* Bring in auto-generated EventLogTags

14 years agoam 0ee41ccc: Merge change I1558a070 into eclair-mr2
Owen Lin [Mon, 7 Dec 2009 08:04:49 +0000 (00:04 -0800)]
am 0ee41ccc: Merge change I1558a070 into eclair-mr2

Merge commit '0ee41ccc1429b83c6ab62cb99e081826a94741e8' into eclair-mr2-plus-aosp

* commit '0ee41ccc1429b83c6ab62cb99e081826a94741e8':
  Fix the camera preview demo.

14 years agoMerge change I1558a070 into eclair-mr2
Android (Google) Code Review [Mon, 7 Dec 2009 08:00:07 +0000 (00:00 -0800)]
Merge change I1558a070 into eclair-mr2

* changes:
  Fix the camera preview demo.

14 years agoam 85f5c420: am e8d64956: Merge change I6b913ab8 into eclair
David 'Digit' Turner [Sat, 5 Dec 2009 02:31:25 +0000 (18:31 -0800)]
am 85f5c420: am e8d64956: Merge change I6b913ab8 into eclair

Merge commit '85f5c42069ab6ae90d1ed1c04f22a7b42407e55d' into eclair-mr2-plus-aosp

* commit '85f5c42069ab6ae90d1ed1c04f22a7b42407e55d':
  Fix toolchain scripts for Darwin and Cygwin.

14 years agoam e8d64956: Merge change I6b913ab8 into eclair
David 'Digit' Turner [Sat, 5 Dec 2009 02:27:05 +0000 (18:27 -0800)]
am e8d64956: Merge change I6b913ab8 into eclair

Merge commit 'e8d649561a6dbc6e0260d4b24049c00d23e7285b' into eclair-mr2

* commit 'e8d649561a6dbc6e0260d4b24049c00d23e7285b':
  Fix toolchain scripts for Darwin and Cygwin.

14 years agoMerge change I6b913ab8 into eclair
Android (Google) Code Review [Sat, 5 Dec 2009 02:22:21 +0000 (18:22 -0800)]
Merge change I6b913ab8 into eclair

* changes:
  Fix toolchain scripts for Darwin and Cygwin.

14 years agoFix toolchain scripts for Darwin and Cygwin.
David 'Digit' Turner [Sat, 5 Dec 2009 01:57:36 +0000 (17:57 -0800)]
Fix toolchain scripts for Darwin and Cygwin.

Only touches download-toolchain-sources.sh and build-toolchain.sh
This does not impact the NDK build scripts themselves and is only
needed to properly package NDK release packages.

14 years agoam 2321ba48: am b49dd835: Adding wallpaper sample in ApiDemos.
Megha Joshi [Sat, 5 Dec 2009 01:10:40 +0000 (17:10 -0800)]
am 2321ba48: am b49dd835: Adding wallpaper sample in ApiDemos.

Merge commit '2321ba48baed1638a71ec8c7b1d6f9d79e3e9f83' into eclair-mr2-plus-aosp

* commit '2321ba48baed1638a71ec8c7b1d6f9d79e3e9f83':
  Adding wallpaper sample in ApiDemos.

14 years agoam b49dd835: Adding wallpaper sample in ApiDemos.
Megha Joshi [Sat, 5 Dec 2009 01:06:39 +0000 (17:06 -0800)]
am b49dd835: Adding wallpaper sample in ApiDemos.

Merge commit 'b49dd8359d1b23eb527139499c0db58cb01466c6' into eclair-mr2

* commit 'b49dd8359d1b23eb527139499c0db58cb01466c6':
  Adding wallpaper sample in ApiDemos.

14 years agoAdding wallpaper sample in ApiDemos.
Megha Joshi [Thu, 3 Dec 2009 21:56:04 +0000 (13:56 -0800)]
Adding wallpaper sample in ApiDemos.

14 years agoam ac2a5cf7: Fix fake timing.
Marco Nelissen [Fri, 4 Dec 2009 22:48:27 +0000 (14:48 -0800)]
am ac2a5cf7: Fix fake timing.

Merge commit 'ac2a5cf7e45a2fa7936119517e4f52517b9d5747' into eclair-mr2-plus-aosp

* commit 'ac2a5cf7e45a2fa7936119517e4f52517b9d5747':
  Fix fake timing.

14 years agoFix fake timing.
Marco Nelissen [Fri, 4 Dec 2009 22:44:43 +0000 (14:44 -0800)]
Fix fake timing.

14 years agoam 2eaa8880: am c5a640ee: Merge change Icce4f510 into eclair
Scott Main [Fri, 4 Dec 2009 02:24:44 +0000 (18:24 -0800)]
am 2eaa8880: am c5a640ee: Merge change Icce4f510 into eclair

Merge commit '2eaa8880f076ebd0db36de81f9feaf34bd571df3' into eclair-mr2-plus-aosp

* commit '2eaa8880f076ebd0db36de81f9feaf34bd571df3':
  change BT sample minsdkversion to 6 because it

14 years agoam c5a640ee: Merge change Icce4f510 into eclair
Scott Main [Fri, 4 Dec 2009 02:14:59 +0000 (18:14 -0800)]
am c5a640ee: Merge change Icce4f510 into eclair

Merge commit 'c5a640ee3aba8c3215a769a11492a4dc8d82bd72' into eclair-mr2

* commit 'c5a640ee3aba8c3215a769a11492a4dc8d82bd72':
  change BT sample minsdkversion to 6 because it

14 years agoMerge change Icce4f510 into eclair
Android (Google) Code Review [Fri, 4 Dec 2009 02:07:52 +0000 (18:07 -0800)]
Merge change Icce4f510 into eclair

* changes:
  change BT sample minsdkversion to 6 because it uses the revised result codes when enabling BT

14 years agochange BT sample minsdkversion to 6 because it
Scott Main [Fri, 4 Dec 2009 01:59:47 +0000 (17:59 -0800)]
change BT sample minsdkversion to 6 because it
uses the revised result codes when enabling BT

14 years agoam 21b8dbe5: Merge change Ia8c35b58 into eclair-mr2
Andrew Stadler [Fri, 4 Dec 2009 01:05:38 +0000 (17:05 -0800)]
am 21b8dbe5: Merge change Ia8c35b58 into eclair-mr2

Merge commit '21b8dbe5c4f657f673bae2b1ad298f91465616d2' into eclair-mr2-plus-aosp

* commit '21b8dbe5c4f657f673bae2b1ad298f91465616d2':
  Track library changes

14 years agoMerge change Ia8c35b58 into eclair-mr2
Android (Google) Code Review [Fri, 4 Dec 2009 01:00:05 +0000 (17:00 -0800)]
Merge change Ia8c35b58 into eclair-mr2

* changes:
  Track library changes

14 years agoam aecf2c65: am 76c9d31c: Revert "adding set wallpaper sample code in ApiDemos."
Jean-Baptiste Queru [Fri, 4 Dec 2009 00:57:41 +0000 (16:57 -0800)]
am aecf2c65: am 76c9d31c: Revert "adding set wallpaper sample code in ApiDemos."

Merge commit 'aecf2c6581228677e90550a6d8f5f9668fb72987' into eclair-mr2-plus-aosp

* commit 'aecf2c6581228677e90550a6d8f5f9668fb72987':
  Revert "adding set wallpaper sample code in ApiDemos."

14 years agoam f6d9c9d4: am eb34b45e: Revert "fixing build"
Megha Joshi [Fri, 4 Dec 2009 00:53:33 +0000 (16:53 -0800)]
am f6d9c9d4: am eb34b45e: Revert "fixing build"

Merge commit 'f6d9c9d427c70017757dcddf5b396de2d5f2f33d' into eclair-mr2-plus-aosp

* commit 'f6d9c9d427c70017757dcddf5b396de2d5f2f33d':
  Revert "fixing build"

14 years agoam 76c9d31c: Revert "adding set wallpaper sample code in ApiDemos."
Jean-Baptiste Queru [Fri, 4 Dec 2009 00:43:32 +0000 (16:43 -0800)]
am 76c9d31c: Revert "adding set wallpaper sample code in ApiDemos."

Merge commit '76c9d31ce383cf1f4ef89dd1dae4f751fbb73b9a' into eclair-mr2

* commit '76c9d31ce383cf1f4ef89dd1dae4f751fbb73b9a':
  Revert "adding set wallpaper sample code in ApiDemos."

14 years agoam 59b2923c: am 7d1b833e: fixing build
Megha Joshi [Fri, 4 Dec 2009 00:42:00 +0000 (16:42 -0800)]
am 59b2923c: am 7d1b833e: fixing build

Merge commit '59b2923c6025812154baf329d636291f55430e0e' into eclair-mr2-plus-aosp

* commit '59b2923c6025812154baf329d636291f55430e0e':
  fixing build

14 years agoam b4fe143c: am b5ad157b: adding set wallpaper sample code in ApiDemos.
Megha Joshi [Fri, 4 Dec 2009 00:41:05 +0000 (16:41 -0800)]
am b4fe143c: am b5ad157b: adding set wallpaper sample code in ApiDemos.

Merge commit 'b4fe143cfe18022653fc6710ba44a8f19c6b17ed' into eclair-mr2-plus-aosp

* commit 'b4fe143cfe18022653fc6710ba44a8f19c6b17ed':
  adding set wallpaper sample code in ApiDemos.