Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 03c63ebe authored by Daniel Sandler's avatar Daniel Sandler Committed by Android (Google) Code Review
Browse files

Merge "Update SystemUI for sw600dp devices."

parents eb65757d 4a066c5c
Loading
Loading
Loading
Loading
+0 −7
Original line number Diff line number Diff line
@@ -17,13 +17,6 @@
*/
-->
<resources>
    <!-- Height of the status bar -->
    <dimen name="status_bar_height">48dip</dimen>
    <!-- Width and height of a single notification icon in the status bar -->
    <dimen name="status_bar_icon_size">32dip</dimen>
    <!-- Size of the giant number (unread count) in the notifications -->
    <dimen name="status_bar_content_number_size">48sp</dimen>

    <!-- Default height of a key in the password keyboard for alpha -->
    <dimen name="password_keyboard_key_height_alpha">75dip</dimen>
    <!-- Default height of a key in the password keyboard for numeric -->
+3 −7
Original line number Diff line number Diff line
@@ -18,13 +18,6 @@
*/
-->
<resources>
    <!-- Height of the status bar -->
    <dimen name="status_bar_height">48dip</dimen>
    <!-- Width and height of a single notification icon in the status bar -->
    <dimen name="status_bar_icon_size">24dip</dimen>
    <!-- Size of the giant number (unread count) in the notifications -->
    <dimen name="status_bar_content_number_size">48sp</dimen>

    <!-- The maximum number of action buttons that should be permitted within
         an action bar/action mode. This will be used to determine how many
         showAsAction="ifRoom" items can fit. "always" items can override this. -->
@@ -82,5 +75,8 @@
         (the screen is in landscape). This may be either a fraction or a dimension.-->
    <item type="dimen" name="dialog_fixed_height_minor">90%</item>

    <!-- Height of the bottom navigation bar in portrait; on sw600dp devices
         this is a bit taller -->
    <dimen name="navigation_bar_height_portrait">56dp</dimen>
</resources>
+7 −10
Original line number Diff line number Diff line
<?xml version="1.0" encoding="utf-8"?>
<!--
/*
** Copyright 2011, The Android Open Source Project
**
** Copyright 2012, The Android Open Source Project
**
** Licensed under the Apache License, Version 2.0 (the "License");
** you may not use this file except in compliance with the License.
@@ -16,13 +16,10 @@
** limitations under the License.
*/
-->

<resources>
    <!-- Whether we're using the tablet-optimized recents interface (we use this
     value at runtime for some things) -->
    <bool name="config_recents_interface_for_tablets">true</bool>

    <!-- Whether recents thumbnails should stretch in both x and y to fill their
     ImageView -->
    <bool name="config_recents_thumbnail_image_fits_to_xy">true</bool>
    <!-- Height of the bottom navigation bar in portrait; on sw720dp devices
         this is the same as the height in landscape -->
    <dimen name="navigation_bar_height_portrait">@dimen/navigation_bar_height</dimen>
</resources>

Loading