• Home
  • History
  • Annotate
  • only in /frameworks/ex/common/java/com/
History log of /frameworks/ex/common/java/com/
Revision Date Author Comments (<<< Hide modified files) (Show modified files >>>)
7158b6705d330ac1e61d5aa51c51b54507c4ab88 17-Dec-2014 Jay Shrauner <shrauner@google.com> Fix StaleDataExceptions

In ensureCacheValid, check whether the cursor is closed before
querying its count. In getItem, check whether the cursor is closed
before moving it to position, as was already being done in getItemId.

Bug:18815354
Change-Id: I4cf2509923695afe9499d0507383c4e0d51bd23e
ndroid/common/widget/CompositeCursorAdapter.java
e93a23581cbb9da2282b5897ffc167f86836afae 15-Aug-2014 Nancy Chen <nancychen@google.com> Add public method to check if the partition is empty.

Currently the size of the partition is hidden from public. The isEmpty
method will allow outside classes to check if the partition does not
have any entries in it.

Bug: 15596340
Change-Id: I0a0f8f7c7a350b802e58e9138801c13b6e74a059
ndroid/common/widget/CompositeCursorAdapter.java
77ffe2074affbef2ff8876ae64d20f5923222de7 23-Jun-2014 Doug Zongker <dougz@google.com> fix race condition in OperationScheduler

OperationScheduler's toString() method got the set of keys from a
SharedPreferences, and then did individual lookups of those keys
assuming they would all succeed, but the shared prefs object can be
mutated by a another thread while that is going on.

Fix to take a snapshot with getAll() and then iterate over the
snapshot.

Bug: 15744821
Change-Id: I6a901ec7f4e632e149db3bf6c226f935bc152402
ndroid/common/OperationScheduler.java
374d66ff1de533725132244d18c7be3b6b80052a 11-Jun-2014 Régis Décamps <regisd@google.com> am 4edf1e54: am a03388cf: am e53ad9ba: Merge "Let Rfc822Validator validate IEA in Punycode or Unicode." into klp-ub-dev

* commit '4edf1e548cec17a3856f1ac659c08b865ecd7817':
Let Rfc822Validator validate IEA in Punycode or Unicode.
4c384ab3ae7621e602a95aeac6e527a52bb5598c 21-May-2014 Régis Décamps <regisd@google.com> Let Rfc822Validator validate IEA in Punycode or Unicode.

Let Rfc822Validator validator internation email adresses.
The implementation is based on a regular expression.
Fixes:
- b/13364030 ComposeActivity rejects TLD that are Punycode
- ComposeActivity rejects TLD that are Unicode
Improve unit tests:
- Use RFC example domains, instead of potentially existing domains.
- Add unicode punycode internationalized email address.
- Add validity check for email with special characters.
- Add validity check "a..b@example.com" (RFC says dot cannot be succesive but it is allowed by major providers)
- Add invalidity check for "a@b-.com" (domain name cannot end with a dash) ; "john@doe@example.com" (@ must be unique)
- Remove a@b.12 from invalid emails. There is no tld made of numbers, but no spec strictly prohibits it.

Bug: 13364030
Change-Id: I78bc5d696f587753d776020ef1f9feded2065ad0
ndroid/common/Rfc822Validator.java
b468c8fc7e914220c457e390b23a54baee1a1c69 25-Mar-2014 Scott Kennedy <skennedy@google.com> am 92591524: am e0b5c555: am 49f3ffd3: am 194dda10: Fix some warnings

* commit '92591524182a086e666f66e087032a646a27d20e':
Fix some warnings
194dda102240aeeaa30c28f4eda3e1d3ccdb6b03 25-Mar-2014 Scott Kennedy <skennedy@google.com> Fix some warnings

Change-Id: I43b3b9e5d6ecf4f5ca46da2cfe8d07e2d647355e
ndroid/common/NetworkConnectivityListener.java
11e4f6f1d60924036491f33c6d5b31e31f8455bc 31-Jan-2014 William Luh <williamluh@google.com> Resolve tag conflict between exp_det_snet and gmail_perf_end.

Change-Id: I4fd904113cd09ea84c3e80bb25b4e433f35638be
ndroid/common/GoogleLogTags.logtags
70235389c1735428b1ee8b2e145e867f11ea6992 31-Jan-2014 William Luh <williamluh@google.com> Rename exp_det_snet tag to snet.

Bug:12824174
Change-Id: Ia81c998aa3ec7309c68f98ee04a5364be37b52b5
ndroid/common/GoogleLogTags.logtags
47224cf1e37ad695ceaa0271aec9878aa13e62b7 03-Jan-2014 William Luh <williamluh@google.com> Add event log tag for Android SNet.

Bug: 12004174
Change-Id: I0023bbadba93354db2c0e5cc5b3b803d58d6f94a
ndroid/common/GoogleLogTags.logtags
9a4f02a8eaf7eb3991900231dbea250e4fb34553 26-Aug-2013 Alon Albert <aalbert@google.com> Refactor List<Partition> to Partition[]

And add an addPartition(int location, Partition partition) method.
The refactoring make adding this method much easier.

Change-Id: Ife051b19837c2719e9487d7bc4f14095e76cc141
ndroid/common/widget/CompositeCursorAdapter.java
59c8098c170047f906460cdd89f9f2ebba987960 01-Jul-2013 Andrew Sapperstein <asapperstein@google.com> am b5e00794: Fix some javadoc bugs.

* commit 'b5e0079419300f09253f160e0bdd28aa1bef4605':
Fix some javadoc bugs.
b5e0079419300f09253f160e0bdd28aa1bef4605 01-Jul-2013 Andrew Sapperstein <asapperstein@google.com> Fix some javadoc bugs.

Change-Id: I10c04c3b69f68b44ff27bbbb1abcc2a0b60fd18a
ndroid/common/OperationScheduler.java
53f35c7c31f31db40b106cc0f7a51f5daf40a7fd 28-May-2013 Yorke Lee <yorkelee@google.com> Fix for CompositeCursorAdapter returning wrong item view types

Cherrypick of
https://googleplex-android-review.googlesource.com/#/c/306995/,

which fixes the bug that causes getItemViewType to be called
with the wrong position, causing new views to be created
unnecessarily.

Bug: 8398321
Change-Id: I6c921fe7d5135cf9f9d9bdd08b5aa4df7662ac1c
ndroid/common/widget/CompositeCursorAdapter.java
1ad9f44796cad21c9d2166c33c3dd8ca3adc41b2 07-Nov-2012 Doug Zongker <dougz@android.com> add exponential backoff option to OperationScheduler

Change-Id: I583f2d628726a3579aba66a49310a0ccffa94c0a
ndroid/common/OperationScheduler.java
430286ba80ebaa23ffa591cbbd6951d5f9fe69fa 01-Mar-2012 Bjorn Bringert <bringert@android.com> Add getSuggestions() to Search

This is a copy of the hidden SearchManager.getSuggestions(),
which I plan to remove. It doesn't depend on any hidden APIs
and is purely a helper method.

Change-Id: I7915cdf327cca9f701e56bcedbf3f5388acf3a66
ndroid/common/Search.java
698c55f3a36fe972b381ad216dc5de3760936858 24-Feb-2012 Tom Wilson <tomwilson@google.com> Adding minor tweaks to SQLiteContentProvider.

Allows sub-classes to specify a max number of batch operations, and
makes this data accessible as a public method.

Change-Id: I3d1cb7b996b23e45b479613b0af4f01a8a641f04
ndroid/common/content/SQLiteContentProvider.java
2e07adb85194abf5b1264aad95b421558f41a5ba 26-Jan-2012 Dave Santoro <dsantoro@google.com> Add an addAll(String[]) method to ProjectionMap.

This is useful if the columns for a table are already declared in
a String[].

Change-Id: I0140081f149a6354984bf3eb1cb3763f5edf369b
ndroid/common/content/ProjectionMap.java
e8245de2b5bf9c295565ec7aa3a8697d7d969469 22-Dec-2011 Conley Owens <cco3@android.com> am f7da24b3: Make static fields of DUSU package-private

* commit 'f7da24b37a0c94e9bfb5e317548999d418fb12ae':
Make static fields of DUSU$DUF package-private
f7da24b37a0c94e9bfb5e317548999d418fb12ae 20-Dec-2011 Conley Owens <cco3@android.com> Make static fields of DUSU$DUF package-private

DataUsageStatUpdater$DataUsageFeedback

This makes a little more sense since they are accessed outside of the
class that they are defined in.

In addition, this fixes errors created by proguard when building with
OpenJDK.

Change-Id: I2c2c514e83fbf789cca59a8ff11df9fd0ac7ffda
ndroid/common/contacts/DataUsageStatUpdater.java
d2fda1ec4db8d261bf0f5ca6dc43f8c204edbd87 13-Dec-2011 Dave Santoro <dsantoro@google.com> Moving ProjectionMap into frameworks/ex.

Change-Id: Ida7831c961dd4a132e6c5bb3fffacceca2f41d44
ndroid/common/content/ProjectionMap.java
b0730385b0822b508e386741eb5638760a97e9fd 13-Oct-2011 Jeff Brown <jeffbrown@google.com> Remove ArrayListCursor.

Change-Id: Iadf4bfbc86efdb04ba2917d9def65061e3cc3a23
ndroid/common/ArrayListCursor.java
4b80d252210137df98bb393b290725f93877b00c 15-Sep-2011 Daisuke Miyakawa <dmiyakawa@google.com> Use ICS version code

Bug: 5047678
Change-Id: I748525684b82f16d7a799b035ad2cfed22fa02d9
ndroid/common/contacts/DataUsageStatUpdater.java
744a03849305a7936741b92dbdc1cc7a7a67802a 23-Aug-2011 Daisuke Miyakawa <dmiyakawa@google.com> Use ICS release name instead of version code

Bug: 5148810
Change-Id: I1b4d5d6280fb94e8cd514e3379aecee888eba479
ndroid/common/contacts/DataUsageStatUpdater.java
490556a764a879cd0eaff358e90705cc1335c92e 05-Aug-2011 Erik <epastern@google.com> b/5122753 Make Rfc822Validator a bit smarter

Change-Id: Iffea9735b906466077ce03a97ab49b614917dbf3
ndroid/common/Rfc822Validator.java
5192e36f6c137899e9745b65877324c1974a2d6b 19-Jul-2011 Daisuke Miyakawa <dmiyakawa@google.com> Use HC MR3's verison code instead of MR2's

Bug: 5047405
Change-Id: I479778c36b2e6706dd0d171bfbe9123cc45c0217
ndroid/common/contacts/DataUsageStatUpdater.java
c3d793fa781ad98e4df1c6ddd3a2bdeedafcda12 14-Jul-2011 Hugo Hudson <hugohudson@google.com> Adds the MoreCloseables utility file.

- This has methods for closing objects iff they are not-null, in
exactly the same way as Closeables, but for objects that don't
implement the Closeable interface.
- Specifically at the moment this involves Cursor and
AssetFileDescriptor objects.

Change-Id: I92e8719e6deab7652f940d129594cdee3c8f3061
ndroid/common/io/MoreCloseables.java
91b05eafd38f6fbbf87440c6b96c7d4b434ab3db 07-Jul-2011 Mark Brophy <mbrophy@google.com> Add the new global-search field to android-common.

For unbundled apps which don't build against ICS yet,
but need to support this feature.

Change-Id: I3aca93d007ae05e2c59dc8e0613e761ec52ecdea
ndroid/common/Search.java
e156c9328568d91b5635973529bb044debfbcb87 15-Jun-2011 Daisuke Miyakawa <dmiyakawa@google.com> Merge "Pass query parameters for primary account."
2fd97117b7a325f256279a9c7ea02b48b1e57632 01-Jun-2011 Daisuke Miyakawa <dmiyakawa@google.com> Introduce utility library for sending usage feedback.

It allows each app to conveniently send data usage feedback
to ContactsProvider, which includes
TIMES_CONTACTED/LAST_TIME_CONTACTED existing before ICS and
DataUsageFeedback stuff introduced in ICS.

This library checks API version and update relevant data
appropriately, so each application doesn't need to take care
of details of API (and possible API change in ICS)

TODO:
- need test for this.

Must be after I602c0b83afca674904946f59bbdfc4dca07d46e4

Bug: 4371572
Change-Id: Id84ef81392c48d8c59eb89e0407eec0c592f3b31
ndroid/common/contacts/DataUsageStatUpdater.java
a15ab452e6a7603fb289666177aa13e5e4803d18 05-Apr-2011 Daisuke Miyakawa <dmiyakawa@google.com> Pass query parameters for primary account.

Should be after:
- Ibce363d336cb3e3a1fca10bddbd912ec96e4b059
- I2a22be56822226e3ea6b6f2ef23bb77816d0345a

Bug: 3510087
Change-Id: I7e4f4fa01a237fa82521c5f57c258ee599933d60
ndroid/common/contacts/BaseEmailAddressAdapter.java
4ddc71fff3a41ad8ab5c1bf526567b4ab0a4e989 20-Jan-2011 Gilles Debunne <debunne@google.com> am 86018e02: Merge "Preventive fix in setNotificationsEnabled" into honeycomb

* commit '86018e0266578b120b9ad4133a6f189d2a3eac47':
Preventive fix in setNotificationsEnabled
7c76d5f2cd2cc35e7c4f33264d5f281c96351377 20-Jan-2011 Gilles Debunne <debunne@google.com> Preventive fix in setNotificationsEnabled

This code
setNotificationsEnabled(false);
...
notifyDataChanged();
...
setNotificationsEnabled(false);

should not notify that a change happended.

Change-Id: Ia639530dcc2a34c24a7edbe2d2ba3530d22cacb9
ndroid/common/widget/CompositeCursorAdapter.java
1bcf92d3bca1094bc085ce9cc1291e61bb307d24 17-Jan-2011 Ficus Kirkpatrick <ficus@android.com> am 10c28c7f: Don\'t change the visibility of overridden methods.

* commit '10c28c7f31687ff57476d0a7381461fef71cc5cb':
Don't change the visibility of overridden methods.
10c28c7f31687ff57476d0a7381461fef71cc5cb 16-Jan-2011 Ficus Kirkpatrick <ficus@android.com> Don't change the visibility of overridden methods.

ArrowKeyMovementMethod defines up, down, left, and right
to be protected, so StyledTextArrowKeyMethod shouldn't
change them to be private.

Change-Id: I0e58b9d2ee042b5c7985b664bab299ff618f8116
ndroid/ex/editstyledtext/EditStyledText.java
7a9e3d7c27e65814579f3023604a96d77ad641fc 06-Jan-2011 Maryam Garrett <mkamvar@google.com> Merge "Fix: don't change values of constants"
88287b58d54e7a6413992fe290832a5835fd0c0f 20-Dec-2010 Dmitri Plotnikov <dplotnikov@google.com> Moving SQLiteContentProvider to the ex framework

Change-Id: I54d3d6e7fb3df41196dc2a9b647fd5d23b83d43a
ndroid/common/content/SQLiteContentProvider.java
9af9e25599960f36c56a9808f98e3fa7b048c7ac 01-Dec-2010 Maryam Garrett <mkamvar@google.com> Fix: don't change values of constants

I shouldnt have renamed length -> mlength. This reverts that mistake.

Change-Id: I92eff11b395933912d4010a3e9b996f7b47cf756
ndroid/common/speech/LoggingEvents.java
8e08abc64fa1f4fa08f5407c040819f14f626dfd 11-Nov-2010 Doug Zongker <dougz@android.com> am 046a9e08: add "transaction_event" eventlog tag

* commit '046a9e0835f0922e9388001b157daa504356a4cf':
add "transaction_event" eventlog tag
046a9e0835f0922e9388001b157daa504356a4cf 06-Nov-2010 Doug Zongker <dougz@android.com> add "transaction_event" eventlog tag

Bug: 3171309
Change-Id: I55a3cc5c35281796352379ab548249b19f4156ea
ndroid/common/GoogleLogTags.logtags
6d39f882df7f280e1aab0ccffad80181fd242247 14-Oct-2010 Maryam Garrett <mkamvar@google.com> am 66189d61: Only call VoiceSearch if there are IME logging actions

Merge commit '66189d6156b4aa76f25bb1465d9e0e6f39668b9e'

* commit '66189d6156b4aa76f25bb1465d9e0e6f39668b9e':
Only call VoiceSearch if there are IME logging actions
a6e619351f9fc23f0e6ec486b8de6138e4a08f4c 08-Oct-2010 Bjorn Bringert <bringert@android.com> ex: Move SyncStateContentProviderHelper to frameworks/ex

Change-Id: I9584926a41d002d4e4153fcf241e98cecd74278c
ndroid/common/content/SyncStateContentProviderHelper.java
7b8b23f9c04fa33b79a8949752a90a134a11df8a 07-Oct-2010 Dmitri Plotnikov <dplotnikov@google.com> Moving GroupingListAdapter to frameworks/ex

Moving from packages/apps/Contacts

adb shell am instrument -e class com.android.common.widget.GroupingListAdapterTests -w com.android.common.tests/android.test.InstrumentationTestRunner

com.android.common.widget.GroupingListAdapterTests:.............
Test results for InstrumentationTestRunner=.............
Time: 0.03

OK (13 tests)


Change-Id: Ia58fe362afdc5c64e3740c89049be29f5b329a5b
ndroid/common/widget/GroupingListAdapter.java
66189d6156b4aa76f25bb1465d9e0e6f39668b9e 01-Oct-2010 Maryam Garrett <mkamvar@google.com> Only call VoiceSearch if there are IME logging actions

LatinIME/VoiceInput will set a boolean value if there
are actions which need to be logged. This value will
be checked before sending the intent to VS. This way applications
which use IME can call this function without worrying about
sending "empty" logging intents.

Change-Id: If02971c1cada70aaac954a8a4dcf94794677fab9
ndroid/common/userhappiness/UserHappinessSignals.java
a8c3c446ef995680a8c98936cd286846fa1efc64 30-Sep-2010 Paul Westbrook <pwestbro@google.com> am b4f5e0e5: Fixed the Rfc822Validator

Merge commit 'b4f5e0e5755938f2be9a2f1a1a6609b018c530ad'

* commit 'b4f5e0e5755938f2be9a2f1a1a6609b018c530ad':
Fixed the Rfc822Validator
b4f5e0e5755938f2be9a2f1a1a6609b018c530ad 30-Sep-2010 Paul Westbrook <pwestbro@google.com> Fixed the Rfc822Validator

Make sure that the validator doesn't consider an email address
that has a domain that has more than one adjacent '.' characters valid

Bug: 3048703
Change-Id: I1c227f393738850d89b6da52693d806c231f3136
ndroid/common/Rfc822Validator.java
17d4817661d16464ffa0fd02cb6d1b362e96b8a1 30-Sep-2010 Dmitri Plotnikov <dplotnikov@google.com> De-duping autocomplete email addresses

Change-Id: I5029a9fb49862d87a32dcf87772a4e746887d0fa
ndroid/common/contacts/BaseEmailAddressAdapter.java
d2d12062e69e235113ff52e1bd059b6730b986e4 16-Sep-2010 repo sync <mxw@google.com> Revert "ExpandoLayout"

This reverts commit 112087b9bd4a239df4359c144b11512c56be896d.
ndroid/common/widget/ExpandoLayout.java
112087b9bd4a239df4359c144b11512c56be896d 15-Sep-2010 repo sync <mxw@google.com> ExpandoLayout

Change-Id: I6e9bdcca682f11038332b6c0065af78a67cc5d42
ndroid/common/widget/ExpandoLayout.java
f6d25a8946bbc079550749786b2801df4af3d582 10-Sep-2010 Brad Fitzpatrick <bradfitz@android.com> am 575e1982: Use SharedPreferences.apply() when possible, else use commit()

Merge commit '575e19825099eb83d1d452ffce93314aa66432ed'

* commit '575e19825099eb83d1d452ffce93314aa66432ed':
Use SharedPreferences$Editor.apply() when possible, else use commit()
575e19825099eb83d1d452ffce93314aa66432ed 09-Sep-2010 Brad Fitzpatrick <bradfitz@android.com> Use SharedPreferences$Editor.apply() when possible, else use commit()

Change-Id: I48b18015214c90dd071b74bd807eb4346c0179c2
ndroid/common/OperationScheduler.java
ndroid/common/SharedPreferencesCompat.java
1fa3a8f74d46a616e27c23ed1512f4b7de2ad66d 01-Sep-2010 Dmitri Plotnikov <dplotnikov@google.com> More smooth UI for email autocomplete

The "Searching..." UI is only shown if the results
take longer than MESSAGE_SEARCH_PENDING_DELAY to
arrive.

Change-Id: I05a5cdd05c0a35ec728fe3e79e0032ac68371ebf
ndroid/common/contacts/BaseEmailAddressAdapter.java
1e35ed124efed58b9ef6e70059865cbd145bbce8 01-Sep-2010 Dmitri Plotnikov <dplotnikov@google.com> Limiting the number of email suggestions for autocomplete

Directories will need handle the "limit=" query
parameter as well.

Change-Id: I71486b187aa05cabc3194bd5a50fcbdd13e9284b
ndroid/common/contacts/BaseEmailAddressAdapter.java
55f04311fb40ccadb224f1a4dc1b8ff473dfdf03 01-Sep-2010 Dmitri Plotnikov <dplotnikov@google.com> Correct formating of an email when name is unknown

Also, reducing the number of change notifications

Change-Id: If075fee9a96dc8191c264fc34162969afe4027b6
ndroid/common/contacts/BaseEmailAddressAdapter.java
ndroid/common/widget/CompositeCursorAdapter.java
950b496faf3cbae2a4d08b957cbf6708d2dee8bd 30-Aug-2010 Maryam Garrett <mkamvar@google.com> Merge changes I78f3d743,I5fc85898

* changes:
New LoggingEvent Extra for NBEST selections in Voice IME
New LoggingEvent Extra for NBEST selections in Voice IME
d86a1caf8f291e6d77f29aa837c43b57db646dfc 30-Aug-2010 Maryam Garrett <mkamvar@google.com> New LoggingEvent Extra for NBEST selections in Voice IME

Change-Id: I78f3d743d417a688342feb167e50a4e5114bc0b0
ndroid/common/speech/LoggingEvents.java
d67de73dd8dadd3c59b91b4b50316ac3ae8bca25 30-Jul-2010 Maryam Garrett <mkamvar@google.com> New LoggingEvent Extra for NBEST selections in Voice IME

Change-Id: I5fc858986c90b1153218bf6c6e187e5324e92a36
ndroid/common/speech/LoggingEvents.java
22cb78016de447ec1a1b270a6fc22352c3186929 28-Aug-2010 Dmitri Plotnikov <dplotnikov@google.com> Temporary fix for the user and userdebug builds

Change-Id: I4c7c55e6a362d4ae0d4896dfc5a5820f7c6a36ce
ndroid/common/contacts/BaseEmailAddressAdapter.java
5cc774535d73c09b6788b63ecc728e60da09cfa9 27-Aug-2010 Dmitri Plotnikov <dplotnikov@google.com> General purpose email address autocomplete

Change-Id: I3545805e2e31eb645c54394545f625b35a6e366f
ndroid/common/contacts/BaseEmailAddressAdapter.java
ndroid/common/widget/CompositeCursorAdapter.java
60ae52719e0567fa5b1860df19807716951eca50 20-Aug-2010 Dmitri Plotnikov <dplotnikov@google.com> Moving CompositeCursorAdapter from contacts/widget to common/widget

The class has been used in contacts for a while,
now it will be shared with Gmail, Email and Calendar
for the purposes of integration with Directory API.

Change-Id: I86258dfff426e246d7791b737af574c47b935c7f
ndroid/common/widget/CompositeCursorAdapter.java
d8e057e067696d5e75999fcec1736b8963f3bf92 01-Jul-2010 satok <satok@google.com> Move EditStyledText from framework to the static library.

- Move from core/java/com/android/internal/widget/EditStyledText.java
- Package name was changed to com.android.ex.editstyledtext
-- New naming rule com.android.ex.<package>.<class>
- Deleted all internal APIs
- COnfirmend that the framework was built completely

Change-Id: I371dd034356cde5a7502fbf5cfed090acb0978c4
ndroid/ex/editstyledtext/EditStyledText.java
42680cd95b187a634de129c501aea4758072ad55 30-Jun-2010 Mike LeBeau <mlebeau@android.com> Backport https://android-git.corp.google.com/g/50799 from master into
gingerbread. The gingerbread branch didn't exist when davidi made that
change, but it was intended for anything after Froyo. Without this,
the android-common.jar in the gingerbread branch was incompatible with
the new voice search.

Change-Id: Ia1d2221cf63d506ccb739da6c811bc8790225949
ndroid/common/speech/LoggingEvents.java
f8ea315012986b35c247da1d7660f0845e1d50bf 30-Jun-2010 Mike LeBeau <mlebeau@android.com> am 915260ea: Add RESULT_CLICKED logging event to LoggingEvents.

Merge commit '915260ea53a7363038cf65d851e2e2d616429868'

* commit '915260ea53a7363038cf65d851e2e2d616429868':
Add RESULT_CLICKED logging event to LoggingEvents.
915260ea53a7363038cf65d851e2e2d616429868 30-Jun-2010 Mike LeBeau <mlebeau@android.com> Add RESULT_CLICKED logging event to LoggingEvents.

Bug 2702825

Change-Id: Iaa187a26e933e6fa9a65fac0f74ddef78c5050c3
ndroid/common/speech/LoggingEvents.java
cbb960ca7ccf450a743a315068cf60ccd95fecca 16-Jun-2010 Ying Wang <wangying@google.com> Merge 2 changes from master.

Change-Id: I20384bb557ec24bf55cdad0e633f4a814791e5e7
ndroid/common/speech/LoggingEvents.java
823b6f3516076b92f78c3fc27037d24bb514e653 15-Jun-2010 Ying Wang <wangying@google.com> move android-common from framework/base to framework/ex

Also change the LOCAL_SDK_VERSION from current to 8.
Change-Id: I68943b8b41622dab88c7b13d8c067b39205f028e
ndroid/common/ArrayListCursor.java
ndroid/common/GoogleLogTags.logtags
ndroid/common/NetworkConnectivityListener.java
ndroid/common/OperationScheduler.java
ndroid/common/Rfc822InputFilter.java
ndroid/common/Rfc822Validator.java
ndroid/common/Search.java
ndroid/common/speech/LoggingEvents.java
ndroid/common/speech/Recognition.java
ndroid/common/userhappiness/UserHappinessSignals.java