summaryrefslogtreecommitdiffstats
path: root/tests
Commit message (Collapse)AuthorAgeFilesLines
* Add Activity API to get referrer information.Dianne Hackborn2014-11-111-0/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | This expands the use of EXTRA_REFERRER to be relevant anywhere, allowing apps to supply referrer information if they want. However, if they don't explicitly supply it, then the platform now keeps track of package names that go with Intents when delivering them to apps, which it can be returned as the default value. The new method Activity.getReferrer() is used to retrieve this referrer information. It knows about EXTRA_REFERRER, it can return the default package name tracked internally, and it also can return a new EXTRA_REFERRER_NAME if that exists. The latter is needed because we can't use EXTRA_REFERRER in some cases since it is a Uri, and things like #Intent; URI extras can only generate primitive type extras. We really need to support this syntax for referrers, so we need to have this additional extra field as an option. When a referrer is to a native app, we are adopting the android-app scheme. Since we are doing this, Intent's URI creation and parsing now supports this scheme, and we improve its syntax to be able to build intents with custom actions and stuff, instead of being all hung up on custom schemes. While doing this, fixed a problem when parsing both intent: and new android-app: schemes with a selector portion, where we were not respecting any scheme that was specified. Change-Id: I06e55221e21a8156c1d6ac755a254fea386917a2
* Merge "VD:test:Remove open animation AVD" into lmp-mr1-devztenghui2014-11-0622-551/+0
|\
| * VD:test:Remove open animation AVDztenghui2014-11-0422-551/+0
| | | | | | | | | | | | | | | | This is for unbundle apps, so it is not a good idea to put in open source. b/18171696 Change-Id: I4272a9cd12904b90b4421e88304795a292ceec58
* | Fix issue #17305377: Don't kill process if it still has tasks.Wale Ogunwale2014-11-041-1/+1
|/ | | | | | | | | | | | | | | | We previously killed a process when one of its task was swiped away in the recents UI. This had negative performance implications for apps with multiple tasks in recents. Now we will only kill the process if there are no more tasks associated with it. Changed also removes the need for the ActivityManager.REMOVE_TASK_KILL_PROCESS since ActivityManager will now only kill a task process if it process has no out standing tasks. Bug: 17305377 Change-Id: Ibc39bb328d13c7eab05c04798c2f14887923d9d4
* Surface:lockHardwareCanvasJohn Reck2014-10-213-0/+266
| | | | | | Bug: 17440886 Change-Id: I1f2d98c63ec1a2814c2258cf7e0096139263770a
* Merge "Support negative value in exponential data in the pathData." into ↵ztenghui2014-10-1022-0/+551
|\ | | | | | | lmp-mr1-dev
| * Support negative value in exponential data in the pathData.ztenghui2014-10-1022-0/+551
| | | | | | | | | | | | | | | | | | | | | | Now "1e-5" will not be separated as "1e" and "-5". Add one test for this use case. Make sure we print out the pathData when path parsing has error. b/17919923 Change-Id: I10a00ce21166cfb5a009c49c1a93f40eeb956d83
* | am eecf74bc: am ed65c63b: Merge "Add tests for model management [SDK Only]" ↵Sandeep Siddhartha2014-10-105-4/+369
|\ \ | | | | | | | | | | | | | | | | | | into lmp-dev * commit 'eecf74bcf7746c20f4b8cf69448e4b292357026d': Add tests for model management [SDK Only]
| * \ Merge "Add tests for model management [SDK Only]" into lmp-devSandeep Siddhartha2014-10-095-4/+369
| |\ \
| | * | Add tests for model management [SDK Only]Sandeep Siddhartha2014-10-075-4/+369
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This doesn't change any functionality/APIs etc. It allows us to launch the activity and manually test the enrollment methods. Bug: 17885286 Change-Id: I506d9bb98a592131c04a50c9d6224164ffe07183
* | | | Merge "Support dot separation as the svg path data did." into lmp-mr1-devztenghui2014-10-093-1/+30
|\ \ \ \ | | |_|/ | |/| |
| * | | Support dot separation as the svg path data did.ztenghui2014-10-083-1/+30
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Like "0.0.0" will be separated to "0.0 .0" now, just to make sure we are more complied with svg path data. b/17892882 Change-Id: Id7b64e9882f5174aa794a0256e2a29d66c724876
* | | | am f189c445: am 1a98dd5c: Merge "Load shared library dependencies for ↵Adam Lesinski2014-10-075-0/+79
|\ \ \ \ | |/ / / |/| / / | |/ / | | | | | | | | | AppWidgets" into lmp-dev * commit 'f189c445b84365a3f1bd2b678fdca37f9df8d5d1': Load shared library dependencies for AppWidgets
| * | Merge "Load shared library dependencies for AppWidgets" into lmp-devAdam Lesinski2014-10-075-0/+79
| |\ \ | | |/ | |/|
| | * Load shared library dependencies for AppWidgetsAdam Lesinski2014-10-075-0/+79
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PackageManager and AppWidgetHostServiceImpl should be loading the resources of any shared libraries being used by the app, as they have references in their Widgets or application icons/labels, etc. Bug:17668152 Change-Id: I359662334edb125d7570089916727df4eeba02bb
* | | am 90d557b7: am 7f7d240b: Merge "Fix issue #17752399: Multiple apps broken ↵Dianne Hackborn2014-10-061-1/+1
|\ \ \ | |/ / | | | | | | | | | | | | | | | by GET_TASKS permission change" into lmp-dev * commit '90d557b7a68e64e049a44560b76b959ef87f13d7': Fix issue #17752399: Multiple apps broken by GET_TASKS permission change
| * | Fix issue #17752399: Multiple apps broken by GET_TASKS permission changeDianne Hackborn2014-10-031-1/+1
| |/ | | | | | | | | | | | | | | | | | | | | | | Keep around GET_TASKS as a permission available to apps, so apps still think they have it and don't get all uppity because they don't. Add a new REAL_GET_TASKS that is the actual permission now. Plus some temporary compatibility code until everyone can transition fromn GET_TASKS to REAL_GET_TASKS. Change-Id: I12c1102eed24844685dcbd2fa3b612811603958f
* | am 489502cf: am 7e1ae00c: Merge "Throw error when no intent can be found" ↵wsmlby2014-10-011-6/+2
|\ \ | |/ | | | | | | | | | | into lmp-dev * commit '489502cf606b12cc0f872cec6dfd18d0e41db93f': Throw error when no intent can be found
| * Throw error when no intent can be foundwsmlby2014-10-011-6/+2
| | | | | | | | | | bug: 17396762 Change-Id: I10502d5d1e2332d9e6820ee645234c125e937b7a
* | am b226d295: am c6a06d43: Merge "Revert "Fix issue with using locally ↵Adam Powell2014-10-013-28/+5
|\ \ | | | | | | | | | | | | | | | | | | defined attrs in a shared lib"" into lmp-dev * commit 'b226d2951c8641f9851e40b4e13b4ae25cb1a482': Revert "Fix issue with using locally defined attrs in a shared lib"
| * | Revert "Fix issue with using locally defined attrs in a shared lib"Adam Powell2014-10-013-28/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This reverts commit 5069dd69898bd0d9c69ba2bbd37239ec8d1c9dc6. The reverted commit caused issues loading resources supplied by static libraries. Bug 17748356 Change-Id: I860a4f31451ee7c03c02974826472a67226b029f
* | | Merge "More test cases from UX team for AVD." into lmp-mr1-devztenghui2014-10-0148-2/+1509
|\ \ \ | |/ / |/| |
| * | More test cases from UX team for AVD.ztenghui2014-09-3048-2/+1509
| |/ | | | | | | | | | | | | | | | | This adds more realistic avds for testing purpose. Also add root level alpha tests. b/17698712 Change-Id: I32efaecf8a46a110c77e432a5307296e8a443160
* | Fix issue with using locally defined attrs in a shared libAdam Lesinski2014-09-303-5/+28
|/ | | | | | | | | | | The attribute name resource IDs were never fixed up with the runtime package ID so we weren't finding attributes whenever the runtime package ID was different than the build time one, which happened to be when a shared lib referenced itself (0x00 vs 0x02). Bug:17666947 Change-Id: Icf3e874bcea0e27eebe42d60fbed626a34bf9266
* Merge "Allow null queues to be set in MediaSession" into lmp-devRoboErik2014-09-251-0/+12
|\
| * Allow null queues to be set in MediaSessionRoboErik2014-09-241-0/+12
| | | | | | | | | | | | | | Also add some test code for it to OneMedia. bug:17593962 Change-Id: I074e2bb0329d9a97f623e4309bb7dada157b8324
* | Merge "Add one more test and update old tests" into lmp-devztenghui2014-09-244-17/+136
|\ \ | |/ |/|
| * Add one more test and update old testsztenghui2014-09-234-17/+136
| | | | | | | | | | | | | | | | | | This is just updating the internal test app. No real functionality changed. b/17631551 Change-Id: Icc01e017ea4fbf97712214e6ac02691d29ea5e96
* | Merge "Work on issue #17628623: Need to update default preferred activities ↵Dianne Hackborn2014-09-241-0/+14
|\ \ | | | | | | | | | for YouTube" into lmp-dev
| * | Work on issue #17628623: Need to update default preferred activities for YouTubeDianne Hackborn2014-09-231-0/+14
| |/ | | | | | | | | | | | | | | | | | | | | | | | | | | Improve the warning logs when setting up preferred activities to help identify when there are issues and what they are. Also improve the algorithm a little to still apply permissions when resetting them and there are additional third party apps, as long as the additional app is something like another browser and the preferred activity being set is more specific (has a better match). And add an example of using manifest-based preferred activities in to ActivityTest -- and yes it DOES work! :p Change-Id: I1ff39e03a5df6526206e0c3882085396b355d814
* | Fix animation on the some propertiesztenghui2014-09-232-1/+31
|/ | | | | | | | | The risk is low since most of them are just matching the naming to xml. And this update won't cause build breakage. b/17623982 Change-Id: I1eda0b8314ec7b94bc03976cdc365a7dc1039f4c
* Add leanback support to AppCompatiblityTestwsmlby2014-09-183-5/+11
| | | | Change-Id: Ia9da14b8551c4ec5834a047f0792a5a213a3ac04
* Merge "Add root alpha and animation to (Animated)VectorDrawable" into lmp-devztenghui2014-09-124-1/+33
|\
| * Add root alpha and animation to (Animated)VectorDrawableztenghui2014-09-124-1/+33
| | | | | | | | | | | | b/17393626 Change-Id: If6a28b072f7d4bcb2b57022d86ec784f4c0d78f1
* | Merge "UsageStats should deal with changing time" into lmp-devAdam Lesinski2014-09-121-1/+4
|\ \
| * | UsageStats should deal with changing timeAdam Lesinski2014-09-111-1/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | When the system time is changed, the UsageStats API will modify all existing entries to correspond with the new time change. If the time changed when the device was off, stats in the future will be deleted. Change-Id: Ica3e9917d4d1a180f97700e52ab390e3673e1e82
* | | Change constant to PowerManager.RELEAES_FLAG_WAIT_FOR_NO_PROXIMITYMichael Wright2014-09-121-4/+5
| |/ |/| | | | | | | Bug: 17290118 Change-Id: Iae3866bf3f7ac24f756ec4c183e848a79d1f779b
* | Merge "Add flag to JobParameters for job expired" into lmp-devMatthew Williams2014-09-111-3/+8
|\ \
| * | Add flag to JobParameters for job expiredMatthew Williams2014-09-101-3/+8
| |/ | | | | | | | | | | | | | | | | | | | | | | BUG: 17424511 Introduce an "isOverrideDeadlineExpired" which will allow clients to know when they are being run due to an expiry. Nb that we check deadline expiry by checking that the constraints on the job are not satisfied at execution time. Really this is the same thing, as a job will not be run without its constraints being met, unless the job has expired. Change-Id: I4b91e5b5eadccabd91296d5a5ca66b859dbfaf5c
* | Bring back the fillAlpha and strokeAlpha.ztenghui2014-09-102-3/+6
|/ | | | | | | | | At the same time, remove the group alpha since we did not follow the convention that group's alpha should apply together, not separately to each elements. b/17393626 Change-Id: Idfc071414213583924961dc8ea760d6fb317873c
* Merge "Fix AppCompatibility test for different process name of one package." ↵wsmlby2014-09-101-0/+6
|\ | | | | | | into lmp-dev
| * Fix AppCompatibility test for different process name of one package.wsmlby2014-09-091-0/+6
| | | | | | | | Change-Id: Ic30e5ee81fe6ea82e88d2c5541dc9fa9eba71043
* | Merge "Remove deprecated (and now unused) API method." into lmp-devCraig Mautner2014-09-091-1/+1
|\ \
| * | Remove deprecated (and now unused) API method.Craig Mautner2014-09-091-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | Removes ActivityOptions.makeLaunchTaskBehindAnimation(). Fixes bug 16958544. Change-Id: I2d58f4235994fe01d55b3309d0ec6f8449c5d5b8
* | | Add new wallpaper features for insets and offsets.Dianne Hackborn2014-09-0812-0/+831
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Issue #17394151: WallpaperService / Engines need to get notified of WindowInsets Issue #17394203 Wallpapers need a system API to be shifted in order to support burn in protection Adds a new API on WallpaperManager to set additional offsets to make wallpapers extend beyond the display size. Insets are now reported to wallpapers, to use as they may. This includes information about the above offsets, so they can place their content within the visible area. And to help with this, also expose the stable offsets APIs in WindowInsets which is also very useful information for the wallpaper. Another new API on WallpaperManager to set a raw offset to apply to the wallpaper window, forcing it to move on the screen regardless of what the wallpaper is drawing. Fix wallpapers when used with overscan enabled, so they still extend out across the entire screen. Conveniently, the above new window insets information is very useful for this case as well! And a new wallpaper test app for all this stuff. Change-Id: I287ee36581283dd34607609fcd3170d99d120d8e
* | | Work on issue #17357238: Recents is often slow if not used in a whileDianne Hackborn2014-09-051-1/+11
|/ / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add a new activity attribute, resumeWhilePausing, that allows an activity specifying it to immediately start running without waiting for the previous activity to pause. The recents activity is updated to use this. The implementation of this is ultimately fairly simple -- if we are in the path of resuming such an activity, and find that we first need to pause the existing activity, then within the activity manager we do the regular pause flow but act like it has immediately finished pausing right then so that we can immediately go on to the resume. To make this clean, we tell the activity when asking it to pause that it should not come back and tell us it is done, because we aren't in any way waiting for it. One potentially important change I needed to make here is the pause callback no longer provides the saved persistent state, because we now can't count on that callback happening. I don't think there was really any utility in this anyway -- all modern apps will have their save state flow happen as part of stopping, not pausing, so we'll only capture that saved state when the stop is reported back anyway. And since we do send the saved state back when stopping, it would always blow away whatever we had gotten at the pause. Finally, update the documentation for AppTask.startActivity(), and fix the implementation handling that to be cleaner -- we need to deal with inTask first before getting in to "oh noes add NEW_TASK if this isn't coming from a calling activity" flow. Change-Id: Ia1da0fac90d7bdbaafdda2e34850d795ce17a39f
* | Merge "Disable RT-anim for AnimatorSet" into lmp-devJohn Reck2014-09-061-3/+12
|\ \
| * | Disable RT-anim for AnimatorSetJohn Reck2014-09-051-3/+12
| | | | | | | | | | | | | | | | | | | | | | | | | | | Bug: 17317184 Unfortunately this will disable *all* RT animations in a scene, but we don't have more selective targetting currently Change-Id: I57e1c0ae43957f45229473bdcdaf34c05825fab7
* | | Merge "Camera2: Final API revisions" into lmp-devEino-Ville Talvala2014-09-052-11/+11
|\ \ \
| * | | Camera2: Final API revisionsEino-Ville Talvala2014-09-052-11/+11
| | |/ | |/| | | | | | | | | | | | | | | | | | | | | | - Rename listeners to callbacks. Listeners are single-method and are interfaces, while callbacks are abstract may get more methods in the future. - Use register/unregister for registering callbacks, not add/remove. Bug: 17389922 Change-Id: Ic6b46ad79cb43a43a85e2a4b63f059d3af99798b