summaryrefslogtreecommitdiffstats
path: root/core/java/com/android/internal/widget/RotarySelector.java
Commit message (Collapse)AuthorAgeFilesLines
* Make all lockscreen widgets follow haptic flag.Jeff Sharkey2012-10-121-4/+11
| | | | | Bug: 7337006 Change-Id: I782e498b7528e612c4b06a75b77f5521c951cbd6
* Fix for 2177367: Reduce duration of vibrate in RotaryLockScreenJim Miller2009-10-081-2/+2
| | | | BUG=2177367
* Fix for 2161835: Tweaks to rotary lock screen:Jim Miller2009-10-061-45/+37
| | | | | - Make inactive dimples dim. - When an item is grabbed, make all other dimples dim.
* RotarySelector widget: add callback for "grabbed" state changes.David Brown2009-10-021-9/+32
| | | | | | | | | | | | | | This is the frameworks/base part of the fix for Bug 2158434: add a new callback to the OnDialTriggerListener interface, so the RotarySelector can tell the app about state changes between NOTHING_GRABBED and LEFT_HANDLE_GRABBED and RIGHT_HANDLE_GRABBED. BUG=2158434 DRNO=timsullivan TESTED=regular incoming calls, call waiting calls, answering a call, rejecting a call. Also verified I didn't affect the lock screen at all.
* Adjust opacity for inactive dimple in rotary widgetJim Miller2009-09-301-10/+15
|
* Optimize rotary selector widget by using bitmaps instead of drawables.Karl Rosaen2009-09-251-39/+15
| | | | In profiling setBounds was expensive. Time per onDraw from 13.3ms to 6.59ms :)
* fix bug where siilent mode dissapears when it triggers instead of animating ↵Karl Rosaen2009-09-241-1/+1
| | | | off to the left edge.
* Update RotarySelector to support vertical orientation, and add resolution ↵Karl Rosaen2009-09-241-88/+186
| | | | specific assets (removing old ones).
* Bring the dimples back, and make the "spin around" animation have a fling ↵Karl Rosaen2009-09-221-82/+177
| | | | | | feeling. Also clean up the animation code into start/update animation functions.
* Clean up spin animation in rotary selector, and be even more generous for ↵Karl Rosaen2009-09-201-15/+27
| | | | triggering.
* Add better transition to rotary lock widget when triggering: spin around ↵Karl Rosaen2009-09-201-33/+41
| | | | | | | instead of snap back. Also add some icons and make a layout tweak, used by the lock screen (coming in a commit to android.policy).
* Some tweaks to the rotary lock widget.Karl Rosaen2009-09-171-8/+18
| | | | | | - don't show arrows above widget when in resting state - don't show other icon once you press one (e.g don't show silent mode icon when you are pressing the lock icon) - wider target for triggering action
* Address romain's code review commentsKarl Rosaen2009-09-161-74/+79
|
* Add RotarySelector widget to android.internal for use by lock screen and ↵Karl Rosaen2009-09-151-0/+542
incoming call screen.