6464 Commits

Author SHA1 Message Date
Android (Google) Code Review
f71db95992 Merge change 21134
* changes:
  Add a more compact representation of usage stats.
2009-08-13 14:04:37 -07:00
Android (Google) Code Review
a9085a59ec Merge change 20853
* changes:
  Add net type to mobile for mobile-required traffic
2009-08-13 14:02:08 -07:00
Android (Google) Code Review
bcda5e039f Merge change 21158
* changes:
  Add brackets, braces, and backslash to alt-space character entry popup.
2009-08-13 13:41:15 -07:00
Dianne Hackborn
58c27a0a03 Allow overlays to add resources. 2009-08-13 13:36:00 -07:00
Eric Fischer
f16da4555f Add brackets, braces, and backslash to alt-space character entry popup.
Bug 2024806
2009-08-13 13:30:17 -07:00
Mike Lockwood
0196225690 PowerManager: Fix problem waking screen from negative proximity sensor events.
Fixes bug b/2048591

Signed-off-by: Mike Lockwood <lockwood@android.com>
2009-08-13 16:05:38 -04:00
Android (Google) Code Review
0eebab8bf3 Merge change 21153
* changes:
  Increase search radius for adjacent keys, to reduce unpredictability of suggestions.
2009-08-13 13:02:56 -07:00
Amith Yamasani
ae09878698 Increase search radius for adjacent keys, to reduce unpredictability of
suggestions.
2009-08-13 13:00:12 -07:00
Jason Sams
fbf0b9ecda Implement named slots and convert script.addType to script.setType to remove ordering restrictions. 2009-08-13 12:59:04 -07:00
Android (Google) Code Review
696b912e85 Merge change 21100 into donut
* changes:
  Use dataRoaming in dataConnectionTracker.
2009-08-13 12:36:22 -07:00
Jeff Sharkey
ab13c7792e Add methods for directly setting Contact header data.
Previously, ContactHeaderWidget only allow data binding
through helper methods, or a single static call.  In the
Contacts edit UI, we need to set individual fields directly
based on internal EntityDelta states.  Also added more
documentation and exposed more-direct query helpers.
2009-08-13 12:14:18 -07:00
Cary Clark
543221fc4b handle false results in file.delete
found by findbugs
http://b/issue?id=1856614
2009-08-13 15:04:47 -04:00
Christian Sonntag
6639bb65c5 Add a more compact representation of usage stats.
We are replaceing the package name in the activity name with a * iff the activity is in the
same package, otherwise the activity name is pritned out in full.
This small change will remove a lot of bytes (in the order of kilobytes for a real log) from the logged data on the network and downstream processing,
since the package name is repeated in almost all cases.

 An exampe of the new format is here:
 DUMP OF SERVICE usagestats:
 D:4,20090813
 P:com.android.launcher,4,155456
 A:*.Launcher,4,0,0,0,0,0,0,0,0,0,2
 P:com.android.browser,1,6724
 A:*.BrowserActivity,1,0,0,0,0,0,0,0,0,0,0
 A:*.CombinedBookmarkHistoryActivity,1,0,0,0,0,0,0,0,0,0,1
 P:com.google.android.apps.maps,1,2219
 A:com.google.android.maps.MapsActivity,1,0,0,0,0,0,0,0,0,0,0
 P:com.android.contacts,1,0
 A:*.DialtactsActivity,1,0,0,0,0,0,0,0,0,0,1
2009-08-13 12:02:14 -07:00
Android (Google) Code Review
94ff3f1f08 Merge change 21063 into donut
* changes:
  Fix handling of reference XML file in layout files
2009-08-13 11:31:07 -07:00
Xavier Ducrohet
08e2a4b56f Fix handling of reference XML file in layout files
This allows layout that references animation to properly load
in the layout editor in ADT
2009-08-13 11:23:40 -07:00
Leon Scroggins
6679f2f708 Pass clicks to webkit's textfield to determine the new selection.
Requires a corresponding change to external/webkit.  We were previously
letting WebTextView handle clicks, determine the change in selection,
and pass that down to webkit.  This sometimes resulted in a different
placement of the caret if the WebTextView and the webkit-rendered
textfield did not line up exactly.  Now, we pass the click directly
to webkit, which determines the new selection and passes that info
back to the WebTextView.  This also has the benefit of letting
the WebTextView reflect changes in the selection that originated from
webkit. Also remove some unused parameters.
2009-08-13 14:21:24 -04:00
Android (Google) Code Review
e1b63d224a Merge change 21033 into donut
* changes:
  Mock ServiceManager and AccesibilityManager to make the view renders in ADT
2009-08-13 11:13:46 -07:00
Wink Saville
9688c6046f Rename bcdByteToInt to gsmBcdByteToInt and beBcdByteToInt to cdmaBcdByteToInt. 2009-08-13 11:11:46 -07:00
Benny Wong
da83f4674a Modified the camera HAL interface to use the same generic callback architecture as camera services 2009-08-13 10:46:28 -07:00
Android (Google) Code Review
ddb79c9fd5 Merge change 21090
* changes:
  remove Gears
2009-08-13 10:33:36 -07:00
Android (Google) Code Review
364277866f Merge change 21106
* changes:
  In the simulator, make sure that the preview thread is a Java thread, since we won't be going through the binder in single process mode.
2009-08-13 09:46:29 -07:00
Marco Nelissen
ae7f3c5dcb In the simulator, make sure that the preview thread is a Java thread,
since we won't be going through the binder in single process mode.
2009-08-13 09:24:47 -07:00
John Wang
8c6b883cd3 Use dataRoaming in dataConnectionTracker.
Seperate dataRoaming from gsmRoaming. dataRoaming is based on +CGREG returns in GSM while gsmRoaming is based on +CREG returns. Previously, the status of dataRoaming is always treated the same as gsmRoaming. However there is a situation where +CREG returns 0 and +CGREG returns 5, i.e., gsmRoaming is off and dataRoaming is on. In such situation, the phone should setup data connection if the phone enables data service when roaming (for example, data only card). The phone shouldn't setup data connection if the phone disable data service when roaming (to prevent roaming data charge). So gsmDataConnectionTracker should use dataRoaming instead of gsmRoaming to decide if data service allowed.

	modified:   GsmDataConnectionTracker.java
	modified:   GsmServiceStateTracker.java
2009-08-13 08:42:18 -07:00
Andrei Popescu
385df699a6 remove Gears 2009-08-13 13:07:48 +01:00
Owen Lin
3940f2df36 Log more information to help us debug which ListView has
IllegalStateException in monkey tests. (bug 1995826)
2009-08-13 18:03:30 +08:00
Joe Onorato
25660ec2c8 Unbreak the sdk build.
I didn't break it, so if this doesn't fix it, somebody else should give
it a shot.
2009-08-12 22:40:37 -07:00
Dianne Hackborn
5350ffa1cf resolved conflicts for merge of 4431a065 to master 2009-08-12 21:58:34 -07:00
Android (Google) Code Review
d0fc3dded2 Merge change 21044
* changes:
  Add new API to compare certs of two UIDs.
2009-08-12 21:53:24 -07:00
Joe Onorato
168173a698 Don't crash when the window is closing 2009-08-12 21:42:00 -07:00
Dianne Hackborn
766cbfe44b Add new API to compare certs of two UIDs. 2009-08-12 21:40:05 -07:00
Android (Google) Code Review
4431a06507 Merge change 21055 into donut
* changes:
  Lock in final resource identifiers.
2009-08-12 21:36:22 -07:00
Mike LeBeau
2cd0a5c6aa am c41dca14: Merge change 21045 into donut
Merge commit 'c41dca14ee9a9513e547a54a6356b4dab41d781c'

* commit 'c41dca14ee9a9513e547a54a6356b4dab41d781c':
  Last minute change: Replace default app icon with a prettier one - droid on a software box sort of thing. :)
2009-08-12 21:36:16 -07:00
Mike LeBeau
6f9da6b7b6 am 370e1f74: Merge change 21038 into donut
Merge commit '370e1f7439fd2688220bfc9615ea70fa3d397cea'

* commit '370e1f7439fd2688220bfc9615ea70fa3d397cea':
  Propagate info about whether a "call" command was issued in RecognitionResult.
2009-08-12 21:36:09 -07:00
Android (Google) Code Review
67049ccc96 Merge change 21060
* changes:
  resolved conflicts for merge of 6550076f to master
2009-08-12 21:35:04 -07:00
Dianne Hackborn
04bfa42078 resolved conflicts for merge of 6550076f to master 2009-08-12 21:32:10 -07:00
Android (Google) Code Review
34453aeefb Merge change 21059
* changes:
  make sure EGL_ANDROID_swap_rectangle is actually supported before using it
2009-08-12 21:25:15 -07:00
Mathias Agopian
42fd8050ba make sure EGL_ANDROID_swap_rectangle is actually supported before using it 2009-08-12 21:24:53 -07:00
Android (Google) Code Review
0b66d3019e Merge change 21057
* changes:
  Better error handling in EGL extensions
2009-08-12 21:18:35 -07:00
Mathias Agopian
88e3e6bd04 Better error handling in EGL extensions 2009-08-12 21:18:15 -07:00
Dianne Hackborn
244c99283c Lock in final resource identifiers. 2009-08-12 20:55:20 -07:00
Android (Google) Code Review
add6cc9df2 Merge change 21047
* changes:
  Fix build break.
2009-08-12 18:51:46 -07:00
Jason Sams
1b52aae4d9 Fix build break. 2009-08-12 18:50:44 -07:00
Android (Google) Code Review
c41dca14ee Merge change 21045 into donut
* changes:
  Last minute change: Replace default app icon with a prettier one - droid on a software box sort of thing. :)
2009-08-12 18:40:22 -07:00
Mike LeBeau
e4ad69020c Last minute change: Replace default app icon with a prettier one - droid on a software box sort of thing. :)
Addresses http://b/2000048
2009-08-12 18:38:21 -07:00
Android (Google) Code Review
370e1f7439 Merge change 21038 into donut
* changes:
  Propagate info about whether a "call" command was issued in RecognitionResult.
2009-08-12 18:05:50 -07:00
Mike LeBeau
840d0f528f Propagate info about whether a "call" command was issued in RecognitionResult.
This is needed for the fix of http://b/2018041.
2009-08-12 18:03:31 -07:00
Android (Google) Code Review
6550076f6c Merge change 21025 into donut
* changes:
  The DONUT constant also needs to be updated to the official SDK version.
2009-08-12 18:00:16 -07:00
Android (Google) Code Review
30c0815d97 Merge change 21035
* changes:
  Implement reflecting Java objects into the ACC enviroment.
2009-08-12 17:57:16 -07:00
Dianne Hackborn
fe77ec8e08 The DONUT constant also needs to be updated to the official SDK version.
Also remove all of the resource value padding.
2009-08-12 17:57:14 -07:00
Jason Sams
43ee06857b Implement reflecting Java objects into the ACC enviroment. 2009-08-12 17:54:11 -07:00