| Commit message (Collapse) | Author | Age | Files | Lines |
| |\
| |
| |
| |
| | |
* commit 'f47e76e2c78e78e26110786e99548d718d177c32':
Make velocity tracker strategy configurable.
|
| | |\ |
|
| | | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
This change is very useful for testing purposes because it makes it
easy to compare different implementations to see how they behave.
There is no change to the current default strategy.
Bug: 6413587
Change-Id: I4d8567aa4160571ba9fa397ce419882cd9366749
|
| |\ \ \
| |/ /
| | |
| | |
| | |
| | |
| | | |
package" into jb-dev
* commit '94a8ae09bea03ec2ca5563601e28a196d41bb6b6':
Fix 6592932: add means to replace assist icon from given package
|
| | |/
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
This provides the means to replace the assist icon shown in keyguard and the
navigation gesture for assist. It's done by adding metadata called
"com.android.systemui.action_assist_icon" to the activity that handles
android.intent.action.ASSIST. It should point to a StateListDrawable
in that package with the required states. For example:
<meta-data android:name="com.android.systemui.action_assist_icon"
android:resource="@drawable/ic_android_systemui_action_assist" />
And then something like this in drawable/ic_android_systemui_action_assist.xml :
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_enabled="true"
android:state_active="false"
android:state_focused="false"
android:drawable="@drawable/ic_action_assist_normal" />
<item android:state_enabled="true"
android:state_active="true"
android:state_focused="false"
android:drawable="@drawable/ic_action_assist_activated" />
<item android:state_enabled="true"
android:state_active="false"
android:state_focused="true"
android:drawable="@drawable/ic_action_assist_focused" />
</selector>
Change-Id: Ibc29360e179fed68253ff06a07b1bb2b982d0dab
|
| |\ \
| |/
| |
| |
| | |
* commit '762ca84cb26b06cfc758db38f4af6edfcf6a4349':
Sped up ActionBar and StatusBar animations
|
| | |\ |
|
| | | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
Animations to show/hide the ActionBar and StatusBar were very slow, given
the size of the objects and the distances covered by the sliding animations.
Also, the ActionBar animation was sometimes hiccuppy as it faded in/out.
This change eliminates the ActionBar fade (which is unnecessary) and speeds
up the animations (smaller durations and steeper interpolation curves). Also,
it eliminates the startDelay on the ActionBar show animation.
Issue #6564089 Options menu should slide in much quicker (nakasi/JB)
Change-Id: I2c8298301f7bf26bbbc94444e715420a2c029ba0
|
| |\ \ \
| |/ /
| | |
| | |
| | | |
* commit '2a7b17bb2604823e140fb867fe87836dd039611a':
Fix 6580421: make sure MultiWaveView.reset() makes handle visible
|
| | | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
This fixes a bug where sometimes the handle wasn't visble in the
incoming call screen. The problem was that the animation was
interrupted on its transition from alpha = 0 to alpha = 1 by reset()
and the new handle animation wasn't started.
Change-Id: I3ab4259db1115da20e7f54b91bbfe3b496940214
|
| |\ \ \
| |/ /
| | |
| | |
| | | |
* commit 'd8c5f10c10ea1a8708481eac52ee573d5c3b6a67':
Fix 6398209: SearchPanel gesture improvements
|
| | |/
| |
| |
| |
| |
| |
| |
| |
| | |
This fixes a few recent regressions caused by other bug fixes:
- add new flags to animateCollapse() so we can selectively close panels. Fixes regression caused by attempt to close recent apps from startAssistActivity() which had the side effect of closing the search panel before the animation completes.
- adds tuneable holdoff delay for responding to home key press.
- minor tweaks to MultiWaveView animations.
Change-Id: Ia48434b8d59e7b0290a5e9783960c2f684068218
|
| |\ \
| |/
| |
| |
| | |
* commit 'a073e570789e5b49e8339af44516444b13db4428':
Fix 6398209: General animation improvements for swipe to search
|
| | |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
This cleans up the animation for swipe to search from the navbar. In particular:
1. Wait for initial animation to finish if gesture was too quick.
2. Better fade animation
3. Hide background and fade in when ring is selected
4. Smoother target and outer ring animation when switching between states.
Change-Id: I401197760cf9f06b6ff3e1cdb80bee86a03ef276
|
| |\ \
| |/
| |
| |
| | |
* commit '04b63f6fb0f04e0cd56a6c2d71c8c4f1f2207758':
Squelch the logs from SizeAdaptiveLayout.
|
| | |\ |
|
| | | |
| | |
| | |
| | |
| | | |
Bug: 6540109
Change-Id: I52bd64e2f5d1b2f02ef7e956ddf1340fb9b2aff3
|
| |\ \ \
| |/ /
| | |
| | |
| | |
| | |
| | | |
navigation area" into jb-dev
* commit '73bde11e624c44620819e9c93a61ca6be6e96997':
Fix 6547012: ignore events outside the home/back/recent navigation area
|
| | |\ \
| | | |
| | | |
| | | | |
area" into jb-dev
|
| | | |/
| | |
| | |
| | |
| | |
| | |
| | | |
This fixes the search panel to only show if touch events originate
in the home/back/recent area.
Change-Id: I370da8b5c5613b7bbab5d266ba51a61df8f3a57b
|
| |\ \ \
| |/ /
| | |
| | |
| | | |
* commit '81de5a0b11df08b603693b6d3b381ac9f89ebc67':
Stop animating when not showing.
|
| | | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
We were eating too many jelly beans even when the screen was
off.
Also clean up touch offsets, rotation on fling, and main
platlogo asset.
Bug: 6541052
Change-Id: I34e49b8b7a95ce6daab929885130426a5ae58dc4
|
| |\ \ \
| |/ /
| | |
| | |
| | |
| | |
| | | |
gallery" into jb-dev
* commit '89604931a85edd82c6b4a8c798fc1af610ba706e':
Fix issue #6521829: Sometimes action bar disappears in gallery
|
| | |/
| |
| |
| | |
Change-Id: Ieb1f1fd0ebb87037cda94e1e1d6e2ca9a9c0754e
|
| |\ \
| |/
| |
| |
| |
| |
| | |
long-pressed" into jb-dev
* commit 'a6f0b0ad6966d64d833978cc150cc180b40f8bb3':
Fix6398209: reveal search when home button is long-pressed
|
| | |\ |
|
| | | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
This change add a feature to reveal the swipe to search interface
when the home key is pressed for longer than 50ms. It progressively
reveals the interface. It still requires a bit of tuning, but all
the basic parameters are in this CL.
Change-Id: I1d3a5bb7b912265eb41da68bc9313eee1af2e415
|
| |\ \ \
| |/ /
| | |
| | |
| | |
| | |
| | | |
into jb-dev
* commit 'd51ac09fd7db5d810452138749f9291617c0dbf7':
Fix activity resolver, issues #6519130 and #6507239
|
| | |/
| |
| |
| |
| |
| |
| | |
6519130: Starting ResolverActivity with no arguments crashes system_server
6507239: ResolverActivity may bypass signature permissions
Change-Id: I64534f781bc6b7eb45e85dbe3a55d351ee28e85c
|
| |\ \
| |/
| |
| |
| | |
* commit '5de47b6ad9d72476302f8a3732b639d3d413ef77':
Fix 6398209: Fix glitch in chevron animation in MultiWaveView
|
| | |
| |
| |
| |
| |
| |
| |
| |
| | |
This fixes a glitch caused by clearing the array of chevrons before
stopping the associated animations. The old animations were allowed to
complete which caused chevrons to move around erratically because they
were being controlled by multiple animators.
Change-Id: Iec1450dd83077a721930eb3cac19a621e7356980
|
| |\ \
| |/
| |
| |
| |
| |
| | |
navbar" into jb-dev
* commit 'c1c140657633cc5b0ff26da1f122fab305d21e01':
Fix 6398209: Lots of improvements to gesture search from navbar
|
| | |\
| | |
| | |
| | | |
jb-dev
|
| | | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
- Added ability to postpone animations until after window is shown
to ensure the animation is visible on slower devices.
- Fixed layout bug that prevented targets from being located on
outer ring.
- Fixed bug where some motion events were being ignored when handle
wasn't captured.
- Reduced temp object generation in several methods.
- Added containers to start all animations together and to facilitate
delayed start.
- Increased radius of outer ring on phones to closer match mocks.
- Decreased sensitivity of swipe up gesture on navbar so it's harder to false.
Change-Id: I084f840115aef6496a1f87202c4e42d9962c8c3e
|
| |\ \ \
| |/ /
| | |
| | |
| | | |
* commit '8414beac87b9fb411566c0c99f772c54d4223a31':
Test new fonts and use correct OS version.
|
| | | |
| | |
| | |
| | |
| | | |
Bug: 6499146
Change-Id: I83d6298725fe1f3385d5bf0a34487658583141a4
|
| |\ \ \
| |/ /
| | |
| | |
| | | |
* commit 'e48d12b78011ff5ddbb6838a038ea5384190ec92':
Fix ActionProviders that have submenus
|
| | |\ \ |
|
| | | |/
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
Automatically create a submenu for items with ActionProviders that
provide a submenu when the item was not initially configured to have
one.
Bug 6493376
Change-Id: I27218e2ab205e87534f235eb04042b185d99d143
|
| |\ \ \
| |/ /
| | |
| | |
| | | |
* commit '00ff47484f8137aa3e59f680ff07d2662cfb4088':
More VelocityTracker refactoring.
|
| | |\ \
| | |/
| |/| |
|
| | | |
| | |
| | |
| | |
| | | |
Bug: 6413587
Change-Id: Ida1152e7a34d5fe5caab5e6b5e1bc79f6c7a25e6
|
| |\ \ \
| |/ /
| | |
| | |
| | | |
* commit '2a7a6ca00ab176105b5bbfa6b17bb0dcd058d517':
Implement new window cropping.
|
| | |\ \
| | |/
| |/| |
|
| | | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
The window manager now performs the crop internally, evaluating
it every animation from, to be able to update it along with
the surface position.
Change-Id: I960a2161b9defb6fba4840fa35aee4e411c39b32
|
| |\ \ \
| |/ /
| | |
| | |
| | |
| | |
| | | |
phone/tablet" into jb-dev
* commit '5a588dbe6e3d246523d7c04258f0129ba37df069':
Fix 6486099: Fix clipping issues with MultiWaveView on phone/tablet
|
| | |\ \
| | | |
| | | |
| | | | |
into jb-dev
|
| | | |/
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
This fixes a problem where the bounds of the view weren't being
calculated properly when a separate outer radius was specified.
The code now takes the maximum of the ring drawable's width/height
and that specified in the resource files.
This gives it the best default look on all devices while still
allowing minor tweaks.
Change-Id: I5daa40ff4f14653c8cc89b39102816afb976e4f7
|
| |\ \ \
| |/ /
| | |
| | |
| | |
| | |
| | | |
into jb-dev
* commit '58770232216cd735afdfd3dd53151070e06de5ce':
Move power HAL interactions to PowerManagerService.
|
| | |\ \
| | |/
| |/| |
|