25342 Commits

Author SHA1 Message Date
Eric Fischer
bd9d25e319 Merge "Bug 5278473: Add a delete option in the suggestion popup" 2011-09-14 17:18:59 -07:00
Gilles Debunne
c8952f70ca Bug 5278473: Add a delete option in the suggestion popup
This first CL simply adds the new string before string freeze.

Change-Id: I7d5ed7a8467179668c123380cc516a80099d4993
2011-09-14 17:04:13 -07:00
Adam Powell
86ed436b83 Fix bug 5237737 - ActionBar should fire an accessibility event when
action mode is turned on/off

Fire AccessibilityEvent.TYPE_WINDOW_STATE_CHANGED when action modes
come and go to give an indication of UI change on the level of a menu
or dialog opening/closing.

Change-Id: Id36c6153b0722b4b6927c8d36503e8ac57c2d2b2
2011-09-14 16:19:44 -07:00
Dianne Hackborn
67eb4320d2 Merge "ICS is API 14." 2011-09-14 16:04:15 -07:00
Gilles Debunne
688df79243 Bug 5299484: Recipient address in to field is doubled when entering in landscape mode
A tap on a completion in the keyboard calls onCommitCompletion, which in turn calls
performCompletion because of the DropDownItemClickListener.

As a result, the text is replaced twice. Removing the first text replacement.

Change-Id: I4974d23c68ab25ca0ad0cda5abf25f30129b28ee
2011-09-14 15:52:07 -07:00
Peter Ng
5eb41b01a6 Merge "Spinner touchstates now in line with list states" 2011-09-14 15:03:32 -07:00
Irfan Sheriff
62e61d73f2 Merge "Add support to change IPv6 privacy extensions" 2011-09-14 15:03:26 -07:00
Adam Powell
149cecdc78 Merge "Bug 5151927 - Monkeys should not play with detached lists." 2011-09-14 14:54:23 -07:00
Jaikumar Ganesh
f28c539389 Merge "Use an integer for the channel id." 2011-09-14 14:46:20 -07:00
Jaikumar Ganesh
d1ec771e27 Merge "Add Register before boot flag." 2011-09-14 14:46:10 -07:00
Adam Powell
a2b986e72c Bug 5151927 - Monkeys should not play with detached lists.
Don't process ListView key events while detached from a window.

Change-Id: Ibf85e081887d47834a467f9fd2cb6a1e39b4857e
2011-09-14 14:21:33 -07:00
Dianne Hackborn
0784cfb4b7 ICS is API 14.
Change-Id: I95f500f94ce206ae6ca6938d17537431d8799237
2011-09-14 13:51:59 -07:00
Robert Greenwalt
11fed2b218 Merge "Add OTADM feature for Verizon requirement. - GsmDataConnectionTracker.java <in function createApnList> : modify parameter type for new ApnSetting. (carrierEnabled has changed to boolean from integer, BEARER has changed to integer from string). <in function createAllApnList> : modify telephony db query statement using carrierEnabled. (carrier_enabled: 1 enable apn, 0: disabled apn) <in function buildWaitingApns> : modify apn management code when current RAT (radio access technology) is LTE or EHRPD. add internal function named needToCheckApnBearer to check current RAT is LTE or EHRPD. - ApnSetting.java : add two member variable (carrierEnabled: apn enable/disable , bearer : Radio Access Technology) - Telephony.java : add two static string CARRIER_ENABLED & BEARER. - ApnSettingTest.java : add two assertEquals in function assertApnSettingEqual. add CARRIER_ENABLED & BEARER parameters." 2011-09-14 13:41:10 -07:00
Costin Manolache
e5847ada7b b/5316640 fix bundle add
Change-Id: I567c26f6d8fc1a0ea5827fd32f9012b979cbea71
2011-09-14 12:53:18 -07:00
Irfan Sheriff
7329361cdc Add support to change IPv6 privacy extensions
Bug: 3360737
Change-Id: I9136992d05f7abf15bdfd92aad3a3e0c0fe3bee2
2011-09-14 12:31:56 -07:00
Jaikumar Ganesh
ee4837b3a0 Add Register before boot flag.
In some instances, the device might connect before we have booted up.

Change-Id: I1a50585207a2b0b2339acb048dffaea84e1a91e9
2011-09-14 11:57:46 -07:00
Fabrice Di Meglio
4444573060 Merge "Fix some TextLayoutCache issues" 2011-09-14 11:05:04 -07:00
Gilles Debunne
a4102b972e Merge "Bug 5295607: IOOB problems in Suggestions" 2011-09-14 11:02:43 -07:00
Matthew Xie
f16e2aea54 Merge "Keep Binder reference in the mServiceRecordToPid hashmap" 2011-09-14 10:48:43 -07:00
Gilles Debunne
bd4016e9c8 Bug 5295607: IOOB problems in Suggestions
The start and end of the suggestion span were cached, where as
they should be retrieved when the user clicks since text may have
changed in the meantime.

Change-Id: Iab47f9969d538d8213a8c5b76b4b7ace8dc9428e
2011-09-14 10:10:49 -07:00
Kenny Root
a0f264e1af Be more forgiving in parsing verifier IDs
RFC 4648's Base32 is made to be forgiving for users doing manual entry
of the digits. For this reason we want to be able to parse lowercase
letters as uppercase and number 0 (zero) as letter O along with number
1 (one) as letter I.

Change-Id: Ide760aff84f97c3e06af8bf8d006f36c74033a41
2011-09-14 10:08:19 -07:00
Narayan Kamath
8dd41fb992 Merge "Don't wait indefinitely for audio tracks to finish playing." 2011-09-14 09:11:17 -07:00
Matthew Xie
f1754050ce Keep Binder reference in the mServiceRecordToPid hashmap
so that the Binder object does not get destroyed when the thread
that registers the service record ends.
bug 5276332

Change-Id: Id17a4c279e03aa6928dca5bf048c7c90862bd9cf
2011-09-14 09:05:27 -07:00
Narayan Kamath
69bc1b2696 Don't wait indefinitely for audio tracks to finish playing.
If the track doesn't make progress for a fixed amount of time,
bail.

bug:5309562
Change-Id: I76966b8b3b2f05ba577892899791a09f50a70107
2011-09-14 16:51:05 +01:00
sinikang
723facc20b Add OTADM feature for Verizon requirement.
- GsmDataConnectionTracker.java
  <in function createApnList>
  : modify parameter type for new ApnSetting.
    (carrierEnabled has changed to boolean from integer,
     BEARER has changed to integer from string).
  <in function createAllApnList>
  : modify telephony db query statement using carrierEnabled. (carrier_enabled: 1 enable apn, 0: disabled apn)
  <in function buildWaitingApns>
  : modify apn management code when current RAT (radio access technology) is LTE or EHRPD.
    add internal function named needToCheckApnBearer to check current RAT is LTE or EHRPD.
- ApnSetting.java
  : add two member variable (carrierEnabled: apn enable/disable , bearer : Radio Access Technology)
- Telephony.java
  : add two static string CARRIER_ENABLED & BEARER.
- ApnSettingTest.java
  : add two assertEquals in function assertApnSettingEqual.
    add CARRIER_ENABLED & BEARER parameters.

bug: 4991683
Change-Id: I9450c220009c3093b1e09e8ac9cd0faa0a975067
2011-09-14 08:27:43 -07:00
Justin Ho
d8c82516dd Merge "Moving tablet unlock screen assets to tablet-specific folders Refreshing visual style to match phone unlock assets Bug: 5231253" 2011-09-14 07:39:56 -07:00
Mike Lockwood
6b5a752130 Merge "Move Power Manager minimum screen brightness to a framework resource" 2011-09-14 07:12:46 -07:00
satok
f17db9f525 Call onFinishInputView in onDestroy
onFinishInputView is called in InputMethodService#hideWindow but not in onDestroy.
For closing IMS safely, onFinishInputView should be called in onDestroy.

Bug: 5265534
Bug: 4697071

Change-Id: I2947b62326e3e0644f1c079eafc839a9981e902b
2011-09-14 21:37:04 +09:00
Adam Powell
5c3a77c0ff Un-force fading edges in ListPopupWindows.
Change-Id: Iefb1f64b1f8927fd3c29a8d448a1517afac1ffe1
2011-09-13 21:43:29 -07:00
Adam Powell
87105a3d48 Merge "Fix bug 5314559 - Slow menu scrolling in browser on some devices" 2011-09-13 21:13:15 -07:00
Jeff Sharkey
d18addb4e3 Remove deprecated TrafficStats API.
Bug: 5314214
Change-Id: If7dc3ef012a0e998e83ab4fef27ff19398d3e14c
2011-09-13 20:43:10 -07:00
Adam Powell
f4f520ae9f Fix bug 5314559 - Slow menu scrolling in browser on some devices
nativeSetIsScrolling has other side effects. Just pause picture
updating when WebView loses focus.

Change-Id: I917851c806f35a91a12a25c7457712123669384f
2011-09-13 20:16:32 -07:00
satok
41ccb08f5a Merge "Skip the exit animation when the IME is destroyed." 2011-09-13 19:11:05 -07:00
Adam Powell
cb18db8e7e Merge "Fix bug 5312352 - ListView modal multi-select mode bugs" 2011-09-13 18:17:14 -07:00
Adam Powell
1e83b3e6ab Fix bug 5312352 - ListView modal multi-select mode bugs
When the provided callback returned false for creating the mode, the
item was still getting checked and the bar was flickering. Don't do
that.

Change-Id: I384962742edeac0c43aec6f7898bd50dab064738
2011-09-13 18:13:31 -07:00
Kenny Root
c924fbd693 Merge "Add verifier device identity" 2011-09-13 17:51:08 -07:00
John Reck
d4fdc0f562 Merge "Prevent pause/resuming a destroyed WebViewCore" 2011-09-13 17:23:11 -07:00
Adam Powell
911d63d159 Merge "Fix bug 5309557 - Monkeys and SIGSEGV do not mix!" 2011-09-13 17:15:46 -07:00
John Reck
9d19923bb5 Merge "Make sure the finalizer destroy runs on the UI thread" 2011-09-13 16:55:27 -07:00
Adam Powell
cc2264fe47 Fix bug 5309557 - Monkeys and SIGSEGV do not mix!
Make sure that the native component of WebView has been initialized
before any native-level optimization involving window focus occurs.

Change-Id: I24ca5fe21657aeb1a1faf5bc36fba5ea11064f86
2011-09-13 16:11:29 -07:00
Irfan Sheriff
651cdfcbac Unhide wifi p2p API
Bug: 5247957
Change-Id: Id93e30c0cb60f361ba13a840de8f843415777336
2011-09-13 16:04:00 -07:00
Kenny Root
0aaa0d9317 Add verifier device identity
This adds a special device identifier that is usable only for device
validation. The user will be presented with this number encoded in
easily-transcribable Base32 in the Developer options of Settings.

Change-Id: I4843f55ee90d689a51d0269b22454ca04c1be7ec
2011-09-13 16:02:43 -07:00
Adam Powell
e0946eb270 Merge "Fix bug 5307916 - legacy menu theming" 2011-09-13 16:02:38 -07:00
Fabrice Di Meglio
51f383d65f Fix some TextLayoutCache issues
- wrong ContextCount was passed
- better logs

Change-Id: Ie78ba70f98f3cf017c168ab8848cc080fc175f31
2011-09-13 15:57:58 -07:00
Adam Powell
bc83503999 Fix bug 5307916 - legacy menu theming
Let list_menu_item_layout and legacy dialog themes tie into new list
item theming internals.

Change-Id: Ic9253a2217148df72bf22b725b32512673c3bb80
2011-09-13 15:53:16 -07:00
John Reck
2f4d30a2a6 Prevent pause/resuming a destroyed WebViewCore
Bug: 5246901

Change-Id: I697cd26b74ffb0584bb992d8caa6bae1e6eee0fd
2011-09-13 15:50:41 -07:00
Fabrice Di Meglio
d309a0434a Merge "Fix bug #5282141 ScrollView overscroll should not generate invalidations when not needed (ANR textview redraws constantly when touched)" 2011-09-13 15:35:06 -07:00
Justin Ho
921ffae345 Moving tablet unlock screen assets to tablet-specific folders
Refreshing visual style to match phone unlock assets
Bug: 5231253

Change-Id: I638791154009f2cf99ddcc0c51c93768bf38b6d8
2011-09-13 14:51:39 -07:00
Justin Ho
8518d37b74 Merge "Updated default application launcher icon Bug: 5286988" 2011-09-13 14:50:02 -07:00
Justin Ho
d80b3a022c Updated default application launcher icon
Bug: 5286988

Change-Id: If5d05f4a089a058551221986c9363eff80522768
2011-09-13 14:47:24 -07:00