summaryrefslogtreecommitdiffstats
path: root/core
Commit message (Collapse)AuthorAgeFilesLines
...
| * | | | | | | | | | fix callback NPEs when WebView is destroyedMichael Kolb2012-03-093-20/+33
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Bug: 6141489 change destroy flow for WebViewCore and block callback messages Change-Id: Ib15a0e016508bc6df031996adde150dd37c195c4
* | | | | | | | | | | Merge "Adding an announcement type accessibility event and a method on View ↵Svetoslav Ganov2012-03-092-0/+46
|\ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | to announce."
| * | | | | | | | | | | Adding an announcement type accessibility event and a method on View to ↵Svetoslav Ganov2012-03-092-0/+46
| | |_|_|_|_|/ / / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | announce. 1. The need for sending an accessibility event to announce a context change which does not cleanly fit into the existing UI transition UI events has come quite a few time in application development. To avoid retrofitting accessibility event types that do not semantically match the intent to just announce a short message this patch is adding specialized event type. Also a helper method on View is added to sheild developers from knowing how to construct and send such an event. bug:5977979 Change-Id: Iaf5f620426f8616be67fbf243a02ad5b606c949b
* | | | | | | | | | | Merge "Reduce excessive right padding on action bar titles"Adam Powell2012-03-091-1/+1
|\ \ \ \ \ \ \ \ \ \ \
| * | | | | | | | | | | Reduce excessive right padding on action bar titlesAdam Powell2012-03-091-1/+1
| | |/ / / / / / / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Change-Id: I6ef44ce330523dda38a57fe09b9d0520447a6e3c
* | | | | | | | | | | Merge "Improved rotation animation."Dianne Hackborn2012-03-0911-163/+11
|\ \ \ \ \ \ \ \ \ \ \ | |_|_|/ / / / / / / / |/| | | | | | | | | |
| * | | | | | | | | | Improved rotation animation.Dianne Hackborn2012-03-0911-163/+11
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Change-Id: Id21686be8b2b229dc61c5d01f888c9b5deabb857
* | | | | | | | | | | Merge "Removing checked state description text for accessibility from some ↵Svetoslav Ganov2012-03-095-65/+2
|\ \ \ \ \ \ \ \ \ \ \ | |_|/ / / / / / / / / |/| | | | | | | | | | | | | | | | | | | | | widgets."
| * | | | | | | | | | Removing checked state description text for accessibility from some widgets.Svetoslav Ganov2012-03-095-65/+2
| | |/ / / / / / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 1. The framework was appending some text to convey the state of a a CheckedTextView or a RadioButton or a ToggleButton or a Switch but the checked property already conveys that information. It is responsibility of the screen reader developer to append the state text based on the checked property. This change is requested by a few screen reader developers. bug:5951683 Change-Id: Ieba6797770201155c48e37147ae375dfcb5238aa
* | | | | | | | | | Merge "finalise scrolling before checking scroll position"Victoria Lease2012-03-091-1/+1
|\ \ \ \ \ \ \ \ \ \
| * | | | | | | | | | finalise scrolling before checking scroll positionVictoria Lease2012-03-091-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Bug: 5470588 Change-Id: I09435875895452d0b015a641b471b113b84f9bf5
* | | | | | | | | | | Merge "scroll relative to visibleRect in spawnContentScrollTo()"Victoria Lease2012-03-091-3/+3
|\ \ \ \ \ \ \ \ \ \ \
| * | | | | | | | | | | scroll relative to visibleRect in spawnContentScrollTo()Victoria Lease2012-03-081-3/+3
| |/ / / / / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | WebKit calculates its scrolling destination coordinates relative to the visibleRect that WebCoreViewBridge provides it. That visibleRect is stored in WebViewClassic as mScrollOffset. When a titlebar is displaying, the coordinate conversion from content to view fails. This conversion is used in many other places and seems to function perfectly fine for them, so I've concluded that while it may be the wrong tool for this particular job, it is the correct tool for many others. As a result, I've left the conversion as it is and simply fixed the function that WebKit calls to programatically scroll the content. This fixes all of the programmatic scrolling issues I've been seeing with find-on-page without breaking anything else. Bug: 5470588 Change-Id: I50d3af4dd8a7fbd2d04bbb41e38f3e6947fbb46a
* | | | | | | | | | | Merge "Enhancements for avoiding poor connection on wifi"Irfan Sheriff2012-03-091-0/+8
|\ \ \ \ \ \ \ \ \ \ \ | |_|_|_|_|_|/ / / / / |/| | | | | | | | | |
| * | | | | | | | | | Enhancements for avoiding poor connection on wifiIrfan Sheriff2012-03-081-0/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Avoid flapping - Increase thresholds and monitor rssi more closely to detect consistently weak signal Change-Id: I6139a20b7306839b345146a72ce690020a2e00b8
* | | | | | | | | | | Fix docsAdam Powell2012-03-082-3/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Change-Id: Idea902ec3b6e540972650a070e8d224603a55c94
* | | | | | | | | | | Merge "Public API for android.widget.Spinner properties"Adam Powell2012-03-082-0/+195
|\ \ \ \ \ \ \ \ \ \ \ | |_|_|_|_|_|_|_|_|_|/ |/| | | | | | | | | |
| * | | | | | | | | | Public API for android.widget.Spinner propertiesAdam Powell2012-03-082-0/+195
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Bug 6104467 Add properties that can be set/retrieved programmatically to match the XML attributes available. Also add resource ID versions of Drawable setters for Switch. Change-Id: I198cfd9701189ab200c3190f61d18c459b7e4591
* | | | | | | | | | | Switch Parcel to static JNI calls, pass pointer.Jeff Sharkey2012-03-083-202/+309
| |_|_|_|_|/ / / / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Instead of using parcelForJavaObject(), pass down the mNativeObj pointer explicitly. Benchmarks show that writeInt() is roughly 3x faster with this approach. Change-Id: I24ca235c334c44be716070aa8066ec8a429eadb7
* | | | | | | | | | Merge "Split Parcel JNI details away from Binder."Jeff Sharkey2012-03-0811-660/+766
|\ \ \ \ \ \ \ \ \ \
| * | | | | | | | | | Split Parcel JNI details away from Binder.Jeff Sharkey2012-03-0811-660/+766
| | |_|_|_|_|/ / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This is purely a refactoring, with no change to the underlying functionality. Change-Id: I41b59f14e57d1cc144274a01f77658d99a1bfe02
* | | | | | | | | | Merge "Import translations. DO NOT MERGE"Eric Fischer2012-03-086-10/+10
|\ \ \ \ \ \ \ \ \ \ | |_|/ / / / / / / / |/| | | | | | | | |
| * | | | | | | | | Import translations. DO NOT MERGEEric Fischer2012-03-086-10/+10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Change-Id: I503dca8c62c09f8831d313fd7e39405e4397097b
* | | | | | | | | | Merge "Public API for android.widget.Switch properties"Adam Powell2012-03-081-0/+129
|\ \ \ \ \ \ \ \ \ \
| * | | | | | | | | | Public API for android.widget.Switch propertiesAdam Powell2012-03-081-0/+129
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Bug 6104562 Add properties that can be set/retrieved programmatically to match the XML attributes available. Change-Id: Ief28e5cad9ec3e6c2d12dd11ff9fa24f22eecec3
* | | | | | | | | | | Merge "Should recycle TypedArray."Jeff Brown2012-03-081-0/+2
|\ \ \ \ \ \ \ \ \ \ \
| * | | | | | | | | | | Should recycle TypedArray.Jeff Brown2012-03-081-0/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Change-Id: Ia318de37c22e4533fff631be816cee539a5cd83d
* | | | | | | | | | | | Merge "Deprecate some FileUtils, pointing to Os instead."Jeff Sharkey2012-03-081-0/+10
|\ \ \ \ \ \ \ \ \ \ \ \
| * | | | | | | | | | | | Deprecate some FileUtils, pointing to Os instead.Jeff Sharkey2012-03-081-0/+10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Change-Id: I5d306784ea924ffd8c32c4768f975190445932a4
* | | | | | | | | | | | | Merge "Use the Choreographer for Drawable animations."Jeff Brown2012-03-084-106/+243
|\ \ \ \ \ \ \ \ \ \ \ \ \ | |_|_|_|_|/ / / / / / / / |/| | | | | | | | | | | |
| * | | | | | | | | | | | Use the Choreographer for Drawable animations.Jeff Brown2012-03-074-106/+243
| | |/ / / / / / / / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Change-Id: Ifcbf33434bf3c32d1900fd0b3f5bde004604ce8a
* | | | | | | | | | | | Merge "Fix CM test http://b/issue?id=6125619"Xia Wang2012-03-081-0/+1
|\ \ \ \ \ \ \ \ \ \ \ \ | |_|_|_|_|_|_|_|_|/ / / |/| | | | | | | | | | |
| * | | | | | | | | | | Fix CM testXia Wang2012-03-081-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | http://b/issue?id=6125619 Change-Id: I33306619424ab54281aaf592c78581179ebbfc6e
* | | | | | | | | | | | Merge "Fix the docs"Romain Guy2012-03-081-1/+1
|\ \ \ \ \ \ \ \ \ \ \ \
| * | | | | | | | | | | | Fix the docsRomain Guy2012-03-081-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Change-Id: I73bcb684eac01db870936aa5e29df930b5432833
* | | | | | | | | | | | | Merge "Make SyncManager and AccountManagerService multi-user aware."Amith Yamasani2012-03-0810-610/+953
|\ \ \ \ \ \ \ \ \ \ \ \ \ | |/ / / / / / / / / / / / |/| | | | | | | | | | | |
| * | | | | | | | | | | | Make SyncManager and AccountManagerService multi-user aware.Amith Yamasani2012-03-0810-610/+953
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | AccountManagerService - Maintain multiple account lists, one per user - Keep multiple databases of accounts - Account db moved to /data/system/users/<userid>/ SyncManager - SyncStorageEngine keeps track of multiple users' accounts. - SyncQueue maintained as a single instance, queueing requests from multiple users. - Changed some methods to take userId arguments - Removed some deadc0de - Store the userId in the SyncOperation, so we know which provider instance to bind to when queued operations are processed. ContentService - Pass along the userid to sync manager calls. ActivityManagerService: - Fixed a bug in cancelIntentSender - Don't bring other user's task forward when resetting tasks. Updated tests Change-Id: If317340ef68e902787aa3f5ceb4cf96f14aea695
* | | | | | | | | | | | | Merge "Dispatch screen state change events to Views Bug #6120957"Romain Guy2012-03-086-11/+88
|\ \ \ \ \ \ \ \ \ \ \ \ \ | |_|_|_|_|_|_|_|_|_|/ / / |/| | | | | | | | | | | |
| * | | | | | | | | | | | Dispatch screen state change events to ViewsRomain Guy2012-03-086-11/+88
| | |_|_|_|_|_|_|_|_|/ / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Bug #6120957 Using this new callback, views can interrupt and resume their animations or other periodic tasks based on the current state of the display. Change-Id: I398f4abd421e9c5f207107bf1009a7b92cf45daa
* | | | | | | | | | | | Merge changes I140d291e,Id443ec5cMathias Agopian2012-03-081-3/+1
|\ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * changes: remove files that moved to frameworks/native fixup hardcoded include paths for new project
| * | | | | | | | | | | | fixup hardcoded include paths for new projectMathias Agopian2012-03-071-3/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Change-Id: Id443ec5c99bb4d7653905f1be1f72a029e0cf087
* | | | | | | | | | | | | Add new Intent API for associating a ClipData with an Intent.Dianne Hackborn2012-03-085-19/+269
| |_|_|_|_|_|/ / / / / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Allows applications to propagate multiple URI grants through an Intent. Later on, we should probably redefine the share actions to be based on this ClipData with the old extras-based approach only there for compatibility. Even if we don't do that, though, this allows you to do a multi-select share that grants multiple URI permissions by stuffing the URIs in a ClipData. Also add some documentation in various places telling people how they can grant URI permissions. Change-Id: Id4ba8e72c11caf7e1f1f438cb7af058d1586a37c
* | | | | | | | | | | | Merge "More fixes about padding"Fabrice Di Meglio2012-03-082-0/+20
|\ \ \ \ \ \ \ \ \ \ \ \
| * | | | | | | | | | | | More fixes about paddingFabrice Di Meglio2012-03-082-0/+20
| | |/ / / / / / / / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - take care of overridig setPaddingRelative() too in TextView subclasses Change-Id: If2057247cfcac919d777846def4adfeb5a682d51
* | | | | | | | | | | | Merge "Tracking changes to SSLParametersImpl.getDefaultTrustManager()"Elliott Hughes2012-03-081-5/+10
|\ \ \ \ \ \ \ \ \ \ \ \
| * | | | | | | | | | | | Tracking changes to SSLParametersImpl.getDefaultTrustManager()Brian Carlstrom2012-03-081-5/+10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Change-Id: I0bcf2bbcd2581f6b66e08d1c6f0de24bf8d34199
* | | | | | | | | | | | | Merge "Fix measurement issues with Spinner and ListPopupWindow"Adam Powell2012-03-082-2/+21
|\ \ \ \ \ \ \ \ \ \ \ \ \ | |_|/ / / / / / / / / / / |/| | | | | | | | | | | |
| * | | | | | | | | | | | Fix measurement issues with Spinner and ListPopupWindowAdam Powell2012-03-082-2/+21
| | |_|_|/ / / / / / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Bug 6132826 - make sure that our speculative measurement of list items uses an accurate width MeasureSpec. This bug would sometimes affect window sizing when measuring height if content could wrap in the presence of restricted width. Change-Id: Ie28573e952cac3dfa2b95e4691758c72f26b8fd9
* | | | | | | | | | | | Merge "Fix View padding resolution"Fabrice Di Meglio2012-03-081-9/+23
|\ \ \ \ \ \ \ \ \ \ \ \
| * | | | | | | | | | | | Fix View padding resolutionFabrice Di Meglio2012-03-071-9/+23
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - make setPadding() and setPaddingRelative() share same code Change-Id: Iaefa82deb29d9efd6b3f88c751daf503c6b8f774