summaryrefslogtreecommitdiffstats
path: root/core/res/res/values-land
Commit message (Collapse)AuthorAgeFilesLines
* Move padding from navigation and overflow icons to ToolbarAlan Viverette2015-07-301-2/+0
| | | | | | | Also removes unused default_padding_material dimension. Bug: 18482784 Change-Id: If294f61391bc76034feb8222d74f40d6b29857c5
* Set FloatingToolbar width for portrait and landscape.Abodunrinwa Toki2015-05-111-0/+3
| | | | | Bug: 20711006 Change-Id: Iee061a1031406780eb0f85201543b644fbb4d813
* Update DatePicker and CalendarView to latest Material specAlan Viverette2015-03-231-0/+10
| | | | | Bug: 19431364 Change-Id: If364a051a5208d170495de4182e46b32c7560e08
* Implement landscape layout for time picker dialogAlan Viverette2015-02-261-0/+24
| | | | | | | | | | | | | | | Adds support overriding default alert dialog panel elements by including them in the dialog's custom content view, but no public API (yet!) since the panel IDs have never been public. Some minor cleanup and refactoring in TimePickerDialog. Removes Holo styles for "clock" and "calendar" style pickers since they are new in Material. If the new styles are used against Holo they will match Material but with Holo primary/accent colors. Also implements themed color state lists to resolve TODOs in both time and date pickers. Bug: 19431361 Change-Id: I095fd8d653e02d9e5d20d66611432a08a7a5685e
* Change actionbar title size for landscapeYigit Boyar2014-08-211-0/+4
| | | | | Bug: 16132120 Change-Id: Ic6d01671e70e338f1539f3f206d7879a67d54f1e
* Material themeAlan Viverette2014-06-061-2/+2
| | | | | BUG: 15467097 Change-Id: I15191362e104a902895418fc615892c21db64c35
* Update action bar for QuantumAlan Viverette2014-04-141-0/+23
| | | | | BUG: 13914652 Change-Id: Ibc4f597bf5412590c363a228acff40d1ab3bc2c1
* resolved conflicts for merge of f1dd32c8 to masterJohn Spurlock2013-10-141-1/+1
|\ | | | | | | Change-Id: Ied96bfce952fa95eeceb1b8cf64e53830d4d03ac
| * Implement new SYSTEM_UI_FLAG_IMMERSIVE_STICKY.John Spurlock2013-10-141-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Migrate transient bar mode to IMMERSIVE_STICKY, and introduce new behavior for IMMERSIVE: namely the opaque bars are revealed by clearing the flags on swipe. Remove low-profile optimization that confuses api demos and other apps using low-profile as a signal. TransientNavigationConfirmation renamed to ImmersiveModeConfirmation, and its associated resources, since the confirmation is now shown when the nav bar is shown in either of the two immersive modes. Remove unused Toast.makeBar and associated hidden framework bits now that the confirmation uses a cling instead. Bug:11062108 Change-Id: Iae49d31973940b9bee9f5b1827756db5eaa76aa3
* | resolved conflicts for merge of 5fa473cd to masterDaniel Sandler2013-10-141-0/+3
|\ \ | |/ | | | | Change-Id: I097ac206c5232b0596d9d81baad3a501492335ca
| * Limit transient nav cling to 380dp on large/land devices.Daniel Sandler2013-10-141-0/+2
| | | | | | | | | | Bug: 11077915 Change-Id: I141a5f3f565109ae5ac9221053e5a4db36633ca7
* | Update TimePicker widget and its related dialogFabrice Di Meglio2013-09-271-0/+3
|/ | | | | | | | | | | | | | | | | | | - the old TimePicker widget is still there for obvious layout compatibility reasons - add a new delegate implementation for having a new UI based on a radial picker - use the new delegate only for the TimePickerDialog (which does not need to be the same) - added support for Theming and light/dark Themes - added support for I18N (hour formatting and time separator and also position of AM/PM indicator coming from Unicode CLDR) - added support for RTL - verified support for Keyboard - verified that CTS tests for TimePicker are passing (for both the legacy and the new widgets) Also added a new HapticFeedbackConstants.CLOCK_TICK and its related code for enabling ticks vibration. Change-Id: Ib9b53a152bd9e97383dc391ef8c26da91217298f
* Update transient navigation confirmation wording & behaviorJohn Spurlock2013-09-161-20/+0
| | | | | | | | | | | | | | | | | | | | 1. Decrease transient navigation confirmation annoyance. - Only use the power-key as a signal if we detect a screen-off screen-on within a short threshold value. - Auto-confirm if user performs the indicated gesture. - Remember confirmation across reboots. 2. Update wording to new final wording. Remove now obsolete short + long versions. Decrease message font temporarily until the new platform toast redesign is finalized. 3. Remove pre-ship ImmersiveModeTesting debug helper. Bug:10602929 Change-Id: I0bff826391058c7b282eeb61817b93b79de84893
* Update transient navigation confirmation logic.John Spurlock2013-08-131-0/+20
| | | | | | | | | | | | | | | | | | | | | | | Show the confirmation toast when hiding the transient navigation bar only the first time per app, per reboot. Hitting the power key while the transient nav is hidden is taken as a signal of possible user confusion, so reshow the prompt the next time. This requires the confirmation prompt to live in policy (not sysui). It arguably should have been here in the first place, since the transient bar state/policy was here, and sysui should not have not been able to fail to display the prompt correctly. Also take this opportunity to remove a hack wrt positioning the confirmation properly while the nav bar is transitioning. Toasts now support LAYOUT_HIDE_NAVIGATION if applied to the toast's view. Bug: 10246225 Change-Id: Ieb6355e4ca975c0758918a39e3c2ec13da81c7f4
* Move keyguard to its own process.Jim Miller2013-02-272-73/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This is in preparation to moving keyguard into its own process. Moved keyguard source and resources into new .apk. Got basic test app working. Still need to implement MockPatternUtils and means to pass it into KeyguardService with local binder interface. Added new ACCESS_KEYGUARD_SECURE_STORAGE permission. Temporarily disabled USER_PRESENT broadcast. Remove unintentional whitespace changes in PhoneWindowManager, etc. Checkpoint basic working version. Move to systemui process. Synchronize with TOT. Sync with recent user API changes. Fix bug with returing interface instead of stub for IKeyguardResult. Create KeyguardServiceDelegate to allow for runtime-selectable local or remote interface. More keyguard crash robustness. Keyguard crash recovery working. Currently fails safe (locked). Fix selector view which was still using frameworks resources. Remove more references to internal framework variables. Use aliases for those we should move but currently have dependencies. Allow runtime switching between service and local mode. Fix layout issue on tablets where orientation was reading the incorrect constant from the framework. Remove more framework dependencies. Fix PIN keyboard input. Remove unnecessary copy of orientation attrs. Remove unused user selector widget and attempt to get multi user working again. Fix multi-user avatar icon by grabbing it from UserManager rather than directly since keyguard can no longer read it. Merge with AppWidget userId changes in master. Change-Id: I254d6fc6423ae40f6d7fef50aead4caa701e5ad2
* Don't show ECA in landscape mode on phones.Jim Miller2012-11-081-0/+23
| | | | | | Fixes bug 7490941 Change-Id: I8a65aed0b4efc8676b95ad5fea6a7f4ac7d944d0
* Adding bouncer animation on PagedView. (Bug 7459660)Winson Chung2012-11-051-0/+1
| | | | | | - Adding Remove text for translations. Change-Id: Ic18188a2a3caa9dfde8785611242b1c9925f7b87
* hide multiuser selector when IME is up.Chris Wren2012-11-021-0/+5
| | | | | Bug: 7437062 Change-Id: I7d1b2cf8e74b5ac8546aa9ae7545b69ab3584633
* Fix some drag behavior bugs in keyguardAdam Powell2012-10-311-0/+6
| | | | | | | | | | | | Integrate from proto app Make sure you can drag back up immediately without the delay of extra offset on the challenge view. There are still a few further tweaks to make here that will be dependent on another upcoming patch. Change-Id: I6af599e43d6be6da7b431dca5b87e39c157a54df
* single unlock target with honycomb semanticsChris Wren2012-10-261-1/+2
| | | | | | Bug: 7411431 Change-Id: I27a86041c93369df2be2d53cb81c29658e70bcca Proto-Id: I631fa48da4c67351366bcc1002a01dfa66a34d8c
* Fix camera bugs found overnight.John Spurlock2012-10-261-0/+1
| | | | | | | | | | | | - Fix crash in CameraWidgetFrame after rotating to landscape - Fix pages drift to the left bug - Address Jim's comments on c/245706 - Disable camera widget if landscape Bug: 7419070 Bug: 7417798 Bug: 7418781 Change-Id: I5c730c7c1baf3c1872367b6392e6786578765298
* Fixing issues with pattern recovery / account view (issue 7341237):Adam Cohen2012-10-141-1/+1
| | | | | | | | | -> Recovery button should only appear if account present -> Recovery button should appear at bottom -> Account view should have emergency call button -> Account view should not show the clock / status area Change-Id: Id12e8219f3fc6ecb14e82c5ec6ea4b3e28ed772d
* Change keyguard to use single-stage unlock.Jim Miller2012-10-121-0/+20
| | | | Change-Id: Ica175a90ef4400941c7c4f05a494003b85d5e88c
* Final keyguard tablet layout integrationJim Miller2012-10-101-3/+2
| | | | | | | | | This change integrates the finalized tablet layouts for keyguard. It supports both 7" and 10" tablets and makes some minor tweaks on phones. Bug 7094419 Change-Id: I7b683382974de509e8045210544ea959db82e72d
* Update keyguard layouts on phoneJim Miller2012-09-273-6/+39
| | | | | | | | | | | | | | - Go back to using old date format - All keyguard text is now caps - Lower brightness on emergency call text - Fixed CR/LF issue with Owner info - Added new alarm icon and fixed padding - Swapped Google Now and lock icon in landscape mode - Centered PIN/Password/Pattern help text in view in portrait - Fixed keyboard size issue in landscape - Merge new assets from UX Change-Id: I7adb44b6c9a57d40cab0a77433d43291fb277568
* Minor cleanup of left overs from GlowPadView integration.Jim Miller2012-06-291-7/+0
| | | | | | | - remove unused "chevron" assets - reduce memory footprint in SystemUI by not loading unused handle drawable. Change-Id: Iad1799d1a8a764c6abb4201520aa47ba84d33c38
* Fix 6665117: ACTION_ASSIST visual improvementsJim Miller2012-06-151-3/+3
| | | | | | | | - 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 6613962: Update keyguard to use new GlowPadView UX design.Jim Miller2012-06-121-1/+1
| | | | Change-Id: I4f1ef3107e5550f7df9dcb412943a84b66432b7d
* Fix 6040870: Update MultiWaveView for new deviceJim Miller2012-05-101-0/+7
| | | | | | | | | | | | | | This change allows more flexibility in target placement in MultiWaveView. It now supports a new way of specifying chevron drawables that allows them to be moved in directions corresponding to more than the four basic directions (right, up, left, down). Chevron drawables can now be updated in an overlay. This change also adds a place holder and makes a minor tweak to the layout on 720dp devices where the navbar buttons weren't centered. Change-Id: Icd319ec5f276870380e27737c873e78f599ff751
* Fix 6216452: Add search target to lock screenJim Miller2012-04-051-7/+7
| | | | Change-Id: I0784e844fb8e1f904f37d2572c6ddbd6c22e95d1
* Merge "Cleaning up the accessibility of MultiWaveView"Svetoslav Ganov2011-09-011-15/+1
|\
| * Cleaning up the accessibility of MultiWaveViewSvetoslav Ganov2011-08-301-15/+1
| | | | | | | | Change-Id: I13bd71670b38a917d62118ddef5ed6982c9eba99
* | Fix bug 5220390 - action bar title metricsAdam Powell2011-08-311-0/+4
|/ | | | | | | | Adjust action bar title layout metrics to match UX specs. Refresh new metrics properly after a config change. Change-Id: If19fad837ca2919193d4a3a8eb01c1caff68ca67
* Adding accessibility support to the slide lock screenSvetoslav Ganov2011-08-291-1/+43
| | | | | | bug:5210233 Change-Id: I93e876524ae6aaf75aadbe6a21c5c17d41a705f0
* Fix 5045008: replace "ring/silence" target in LockScreen with camera appJim Miller2011-08-041-0/+7
| | | | | | | | | | This change replaces the ring/silence target with a camera target. It is disabled and falls back to the old behavior when any device policy disables the camera. Updated with latest icons. Change-Id: I2374eba08f85ff1d1b0bad2859efa30bb166fb60
* Fix 5044158: layout and asset work on lockscreen PIN modeJim Miller2011-08-031-1/+1
| | | | | | | | | | Fix PIN entry layout issues on hdpi, large-mdpi and xhdpi devices where emergencyCallButton was partially off-screen. Copy button assets from latinIME for PIN screen. Make PIN keyboard horizontal and vertical gaps configurable. Change-Id: I415fcd83f02971b987c3df418d4114b8e1ab3945
* Fix 5044158: Initial pass: add music transport controls to LockScreenJim Miller2011-07-281-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Refactored all lockscreen notifications to go through new KeyguardStatusViewManager. This is required to intercept messages originally intended for separate TextViews that are now shown in a single view when showing the transport control view. Refactor EmergencyCallButton to be handled by common code in KeyguardStatusViewManager. First pass at LockScreenWidgetCallback for LockScreen "widgets" to send events back to LockScreen. First pass at LockScreenWidgetInterface, which will be required of Views that want to be rendered on LockScreen. Added place-holder TransportControlView until the real one is ready and integrated it into GridLayouts. Ensured emergencyCallButton is in all views, even if not shown since some devices may lock the user out if certain criteria isn't met (missing SIM, etc). Refactored layouts and removed keyguard_screen_status*.xml since layouts are all over the map and no longer make good use of a shared layout for this. Minor tweak to MultiWaveView to fix layout issues when placed in GridLayout where the measurement was being calculated improperly. Moved EmergencyCallButton to bottom of view where we can. Removed unused Alpha keyboards from tablet password unlock layouts. Removed unused views (status2, emergencyCallText screenLocked) from layouts and made common views have common names. Fixed bug with MultiWave layout in landscape where array was shown in wrong orientation. Separated clock colors for phones/tablets since they're now different. Converted remaining phone layouts to use GridLayout. Start routing audiomanager events to lockscreen views. Move emergency call button handling to KeyguardStatusViewManager. Change-Id: I480b0346cfe19aad316fea0c0aaabf8862693636
* Layout changes in SettingsGilles Debunne2011-07-181-2/+0
| | | | | | | Conforming to the mocks: changing padding, height... on phones and 7". Change-Id: I8aa1fc78002fb19932037714c67ebeba7b707ef4
* Merge "LockScreen layout, button style, and owner info fixes - enable ↵Jim Miller2011-06-241-1/+1
|\ | | | | | | OwnerInfo to appear in status1 if dedicated view not present. - force all status lines to be singleline and marquee. - fix justification in landscape layouts. - use buttonBarStyle for buttons on all LockScreens. - reduce the size of the clock to fit in landscape. - no longer show "Draw a pattern to unlock" help message in LockPatternView."
| * LockScreen layout, button style, and owner info fixesJim Miller2011-06-241-1/+1
| | | | | | | | | | | | | | | | | | | | | | - enable OwnerInfo to appear in status1 if dedicated view not present. - force all status lines to be singleline and marquee. - fix justification in landscape layouts. - use buttonBarStyle for buttons on all LockScreens. - reduce the size of the clock to fit in landscape. - no longer show "Draw a pattern to unlock" help message in LockPatternView. Change-Id: I1ff51550e2180f9d912c8f710ad5e2fd2424d373
* | Fix bug 4771354 - Phone landscape action bar subtitle slightly cut offAdam Powell2011-06-231-0/+4
|/ | | | | | | | | | on the bottom Let action bar title sizes adapt for restricted space in landscape. Fix home spacing for tablets to eliminate redundant layout. Change-Id: If38a43d87ca1aebf96b5d7adfdb1cf36c41ec07e
* Tweak action bar metrics.Adam Powell2011-06-221-0/+2
| | | | | | | Free up some more pixels in the action bar and better define how icons within it resize. Change-Id: I0768180e595ee7b23190a26607e8989fa1bac38f
* Update LockScreen layouts to latest UX spec.Jim Miller2011-06-221-2/+2
| | | | | | | | | - better placement and consistent handling of emergency button. - use new GridLayout for landscape modes. - add dimensionable parameters for time and status line fonts. - fix assets and emergencyCallButton resource references when building for tablets. Change-Id: I5f4c9cfb6a88ce3ccd8ab4fdafede8e6e59f9407
* Update pattern unlock and assets to match new UX design spec.Jim Miller2011-06-171-0/+3
| | | | | | | | | | | Fix bug with LockPatternView measurement. Clean up forgotPassword/emergencyCall button code. Lots of layout tweaks. Now uses new GridLayout for many of them. New assets. Updated after review. Change-Id: I52d4ce65c6b6c644ac60eb55bb8eaff8bfeb1071
* Add new MultiWaveView widget and integrate it into LockScreenJim Miller2011-06-101-0/+37
| | | | | | | | | This adds a new multi-target widget to the framework and integrates it into LockScreen. Now with updated assets. Change-Id: Ib41595b9e80a7be6d647f44c803a77f9e5bfeca9
* Manual merge. Preference activity changes to work on smaller tablet screens ↵Amith Yamasani2011-05-261-2/+2
| | | | | | | | | and phones. Padding around fragments and to the left of preference items adjusted for different display sizes. Change-Id: I2d29e5525c381092a3f1d2fb1265ce07db893d78
* Action bar work for phonesAdam Powell2011-04-211-0/+4
| | | | | | | | | | | | | | | | | | | | Tweak sizing and layouts for action bar on smaller devices. The action bar's size is now partially dependent on form factor and orientation to conserve screen space, especially in landscape mode. Alter the max action menu items for smaller devices. Disallow text on action menu items with a horizontal width of less than 480dp when an icon is available. Remove the "Done" text on the action mode close button. (TODO: get a properly sized 9-patch resource for this - the current one has an intrinsic width that is too large.) When setting an action bar icon as a resource ID, the bar will attempt to load a mipmapped resource that is the closest available for the target size. Change-Id: I2498c640666ade310fdd1d3a2078bd4000b392a2
* Get LockScreen working on phones.Jim Miller2011-03-301-10/+14
| | | | | | Not the final UI, but it works. Change-Id: Ia31d23069b2c365f711cb9d0a664648623554768
* Move the margins to the left pane in the preference panel.Amith Yamasani2010-12-171-1/+2
| | | | | | | | This way the margins can disappear along with the header pane, leaving the preference fragment pane properly aligned. Bug: 3290342 Change-Id: I71fa132907c50e89c0b88de33ae2d695b5aa88cd
* Adjust preference activity margins and move the widget back to the right side.Amith Yamasani2010-11-171-2/+2
| | | | | | Add a new "icon" field to Preference for adding icons to the left of the preference title. Several screens such as BluetoothSettings and Accounts have added their own custom preferences just to add an icon to the left. This makes it simpler going forward.