summaryrefslogtreecommitdiffstats
path: root/packages/SystemUI/res/values-land
Commit message (Collapse)AuthorAgeFilesLines
* Fix 6665117: ACTION_ASSIST visual improvementsJim Miller2012-06-151-1/+1
| | | | | | | | - add generic icon for search providers that don't supply one - change alpha weighting factor for glow - don't show ring background Change-Id: I86c86dc2d623c25ec7b91e206fac8ad9cd60faac
* Fix 6299832: Add search target swipe action to navigation bar on phonesJim Miller2012-04-241-0/+43
| | | | | | | This adds a feature to swipe upward on the navigation bar to invoke voice search on phones. Change-Id: I462076fd43b1c66c5bf624f00b297c6d3414a19a
* Merge "Visual changes to recent apps" into ics-mr0Michael Jurka2011-10-181-0/+27
|\
| * Visual changes to recent appsMichael Jurka2011-10-171-0/+27
| | | | | | | | | | | | - changing background to be gradient - adding shadow to app thumbnails Change-Id: I0ea7e4900f99adf17c74b885c66a7118bc831595
* | Layout changes to recentsPeter Ng2011-10-141-2/+5
|/ | | | | | | | | | | | Bug: 5411813 -gravity is set to center -textsize is smaller -app icon placement now hangs off the screenshot -recents callout line now defined in colors -recents thumbnail normal state drawable added Change-Id: Ibeaec7e3f0a3bcdbe3f990886b1536cb7d7fdc03
* Updated Recent Apps visualsPeter Ng2011-09-081-1/+3
| | | | | | -added padding to portrait and landscape layout recent item -updated drawable stroke on press and drag Change-Id: I98e0073f5fba6d13f041871337e4dc534bbc1460
* updating visuals of Recent AppsPeter Ng2011-09-011-2/+0
| | | | | | | | | | - replacing background PNGs with 9 patches - removing border around thumbnails by default - when swiping thumbnails, draw a border around them - fix callout line length - make recents window smaller on tablets - deleting unused assets Change-Id: If5bb1ba0d55a6d10e36ee14274c23596f0ba73b9
* Improve Recent Apps scrolling performanceMichael Jurka2011-08-311-3/+1
| | | | | | | | | | - 20fps improvement using software rendering - 10fps improvement using hardware rendering - in sw mode, rendering recents background in the recent items themselves and using a bitmap cache to draw individual items (gives perf gains for sw mode) - in sw and hw mode, no longer doing a fade on the recents scroll view (gives perf gains for hw mode) - instead we draw a black gradient where we would normally fade - fading recents & notifications immediately when swiped - removing unused code Change-Id: I908e2a25b89c9dfbf9b8c8f3810fa43064261b33
* Subtract the navigation bar from DisplayMetrics.Daniel Sandler2011-08-101-1/+1
| | | | | | | | | | | | | | | | | | | | | | Its region is now treated like the system bar: inaccessible to applications and therefore not worth reporting as part of the display. (Note that using setSystemUiVisibility you can gain temporary access to the navigation bar region, unlike the sempiternal system bar.) The navigation bar is now considerably less in control of its own behavior (the window manager assumes it will be a certain size and in a certain position in landscape and portrait). This change also fixes the navbar so that it becomes GONE instead of merely INVISIBLE (allowing underlying windows to expand in size accordingly). Bug: 5052456 // the feature Bug: 5067627 // notification shade falling behind the navbar Bug: 4959805 // fix third-party apps relying on DisplayMetrics Change-Id: I60257fc5c858e0edcaba8cfc1f8d58dd99a68258
* Port recent apps from tablet to phoneMichael Jurka2011-06-151-5/+7
| | | | | | | | - wire up to long press on home - remove unused recents activity - remove duplicate recents resources in -large directories (using -sw600dp instead) - fix issue with zoom/scale translation when recents was brought up Change-Id: I45538ccaff49b46ac3659c4828f9e2b0cd075241
* First pass at integrating new ScrollView-based recents panel.Jim Miller2011-05-181-0/+16
| | | | | | | - added layout transitions - now calls removeTask() for selected activity. Change-Id: Ie57b3d79551353a564bb2e4da26243a10bb0198d
* On-screen navigation bar (separate from the status bar).Daniel Sandler2011-04-271-0/+21
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | In Honeycomb we introduced navigation controls in the status bar, for xlarge devices without physical buttons. What about phones? The status bar is pretty cramped already, and besides, it's at the top of the display most of the time, not at the bottom where your thumb is likely to be. Enter the navigation bar. It's a new window type that appears atop almost everything (including the keyguard); the window manager subtracts its rectangle from the default visible rectangle of other windows (including the status bar and notification shade). However, it behaves (on phones) like the status bar in that applications that request fullscreen windows can get access to those pixels. Well, almost; they need cooperation from the navigation bar implementation to make the navbar disappear, just like the status bar. The current SystemUI implementation of the navigation bar on phones is still rough, but it has the basics: + back, home, and menu keys (NB: we're showing menu all the time right now because checking the api level of the package owning the top window is currently a poor indicator of whether the app requires the menu key) + it tries to stick to the same physical end of the device, regardless of device orientation (on a phone, this is the strip of land closest to the microphone) Change-Id: Ic613a3351220af0bbfbdef63e1d99cbefd5ed1c2
* Rotation lock.Daniel Sandler2010-11-041-0/+23
IWindowManager now supports two new methods, freezeRotation() and thawRotation(), that allow a caller to temporarily stash the device's current rotation as the default rotation (when no other constraints are present). The system bar uses this to implement a user-accessible rotation lock by calling freezeRotation() and then turning off accelerometer-based display rotation; unless overridden by an app, the display will continue to appear in the frozen rotation until the rotation is unlocked by the user (either via the rotation lock icon in the system bar or by checking "rotate screen automatically" in Settings). Bug: 2949639 Change-Id: Icd21c169d1053719590e72401f229424b254622f