Android (Google) Code Review
54ba86f0e2
Merge change 21512 into eclair
...
* changes:
Honor the clickable and enabled properties in ListView.
2009-08-17 11:07:08 -07:00
Romain Guy
dd753ae611
Honor the clickable and enabled properties in ListView.
2009-08-17 10:36:23 -07:00
Jeff Sharkey
fd0d627569
Fix ExpandableListView context menus when has header views.
...
createContextMenuInfo() should have been subtracting any
header views, similar to performItemClick(). Previously,
this caused getUnflattenedPos() to return invalid positions.
This fixes http://b/issue?id=1778239
2009-08-17 09:53:17 -07:00
Android (Google) Code Review
7d68dae99f
Merge change 21494 into eclair
...
* changes:
Allow animation styles to be applied to popup windows.
2009-08-17 09:48:55 -07:00
Android (Google) Code Review
86192c614c
Merge change 21442 into eclair
...
* changes:
Fix a cookie bug. If "secure" is in the end of the string, it was ignored.
2009-08-17 09:19:23 -07:00
Amith Yamasani
d034856ab9
Allow animation styles to be applied to popup windows.
...
Window params were not carrying the package name required for loading
animation styles from outside of the android package.
2009-08-17 08:08:32 -07:00
Android (Google) Code Review
106278c402
Merge change 21432 into eclair
...
* changes:
do not merge: cherrypicked 3710f39096 from master branch
2009-08-16 17:14:20 -07:00
Jeff Sharkey
403d7ac7d1
Bring back SHOULD_SYNC flag so sync groups can be edited.
2009-08-16 16:34:35 -07:00
Grace Kloba
dbdad99813
Fix a cookie bug. If "secure" is in the end of the string, it was ignored.
2009-08-16 00:05:01 -07:00
Fred Quintana
ffd0cb04f9
do not merge: cherrypicked 3710f39096 from master branch
2009-08-15 22:40:25 -07:00
Wei Huang
c650bf583d
Get rid of Settings.getJIDResource(), which really should live in GTalkService. Add API to store the JID resource in IM provider settings.
2009-08-14 16:47:10 -07:00
Android (Google) Code Review
adb4a72d7b
Merge change 21364 into eclair
...
* changes:
Moving contacts-specific strings to donottranslate files.
2009-08-14 16:04:29 -07:00
Dmitri Plotnikov
bb92af91ce
Moving contacts-specific strings to donottranslate files.
2009-08-14 16:01:00 -07:00
Leon Scroggins
f58ffac202
Hide the title bar when zoomed in.
2009-08-14 14:47:27 -04:00
Steve Block
a8dfe24da0
Adds the ability to configure the mock Geolocation service from DumpRenderTree.
2009-08-14 16:43:28 +01:00
Patrick Scott
68e5300477
The local loaders assume the url given to them is decoded.
...
Decode the url before passing down to the local loaders since they do not decode
the url themselves. This was creating a crash on youtube.com since the data url
was percent-encoded and failing to parse from base64.
2009-08-14 08:15:30 -04:00
Dianne Hackborn
0cd48879dc
A little more wallpaper robustness.
...
- Recover if a live wallpaper is crashing repeatedly.
- Don't crash when someone tries to set a static wallpaper.
- Make the static wallpaper update correctly when the image changes.
2009-08-13 19:24:07 -07:00
Mathias Agopian
317a6280cc
Surface::GPU and Surface::HARDWARE are now deprecated; they will be set automatically if needed.
...
this also ripples into the window manager API by making some constant there deprecated as well.
2009-08-13 18:19:32 -07:00
Dianne Hackborn
f21adf6fc1
Always have a wallpaper service running.
2009-08-13 17:14:39 -07:00
Grace Kloba
455e3af1f8
Fix #2048199 . Enable zoom control in the overview mode. When "+" is pressed,
...
treat it as double click in the middle of the page.
2009-08-13 15:27:52 -07:00
Christopher Tate
0749dcd193
Backup participants must now hold the BACKUP_DATA permission
...
Packages that do not use android.permission.BACKUP_DATA will neither be backed
up nor restored. That permission is currently signature-only. In the future if
access to the backup/restore infrastructure is made available to arbitrary 3rd
party applications, the permission checks (and indeed, the permission itself)
can simply be removed.
2009-08-13 15:15:55 -07:00
Android (Google) Code Review
98f40163b9
Merge change 21162
...
* changes:
more support for bindStatic some minor tweaks to the layout in the hopes I can start using this for gtalk soon
2009-08-13 15:00:34 -07:00
Mark Wagner
97f3209b45
more support for bindStatic
...
some minor tweaks to the layout in the hopes I can start using this for gtalk soon
2009-08-13 14:30:21 -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
Eric Fischer
f16da4555f
Add brackets, braces, and backslash to alt-space character entry popup.
...
Bug 2024806
2009-08-13 13:30:17 -07: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
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
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
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
Andrei Popescu
385df699a6
remove Gears
2009-08-13 13:07:48 +01: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
Dianne Hackborn
04bfa42078
resolved conflicts for merge of 6550076f to master
2009-08-12 21:32:10 -07:00
Dianne Hackborn
244c99283c
Lock in final resource identifiers.
2009-08-12 20:55:20 -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
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
Android (Google) Code Review
7c5ab2b06a
Merge change 21032
...
* changes:
Default mBaselineAlignedChildIndex to -1 so it will still be valid when a LinearLayout is created programatically.
2009-08-12 17:23:22 -07:00