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

Commit 042482e9 authored by Thales Lima's avatar Thales Lima Committed by Android (Google) Code Review
Browse files

Merge "Change size of All Apps bottom sheet" into tm-dev

parents 60dc19cb b7ef5695
Loading
Loading
Loading
Loading
+6 −3
Original line number Diff line number Diff line
@@ -26,4 +26,7 @@
<!-- Dragging -->
    <dimen name="drop_target_top_margin">0dp</dimen>
    <dimen name="drop_target_bottom_margin">16dp</dimen>

<!-- AllApps -->
    <dimen name="all_apps_bottom_sheet_horizontal_padding">52dp</dimen>
</resources>
+1 −1
Original line number Diff line number Diff line
@@ -23,7 +23,7 @@

<!-- AllApps -->
    <dimen name="all_apps_search_bar_content_overlap">0dp</dimen>
    <dimen name="all_apps_bottom_sheet_horizontal_padding">46dp</dimen>
    <dimen name="all_apps_bottom_sheet_horizontal_padding">48dp</dimen>

<!-- Fast scroll -->
    <dimen name="fastscroll_popup_width">75dp</dimen>
+7 −0
Original line number Diff line number Diff line
@@ -18,13 +18,20 @@
<!-- Dragging-->
    <dimen name="drop_target_top_margin">0dp</dimen>
    <dimen name="drop_target_bottom_margin">32dp</dimen>

<!-- Dynamic grid -->
    <dimen name="dynamic_grid_edge_margin">21.93dp</dimen>
    <dimen name="cell_layout_padding">29.33dp</dimen>

<!-- Hotseat -->
    <dimen name="spring_loaded_hotseat_top_margin">64dp</dimen>

<!-- AllApps -->
    <dimen name="all_apps_bottom_sheet_horizontal_padding">32dp</dimen>

<!-- Widget picker-->
    <dimen name="widget_list_horizontal_margin">49dp</dimen>

<!-- Bottom sheet-->
    <dimen name="bottom_sheet_extra_top_padding">0dp</dimen>
</resources>
+4 −1
Original line number Diff line number Diff line
@@ -16,10 +16,12 @@

<resources>
<!-- AllApps -->
    <dimen name="all_apps_bottom_sheet_horizontal_padding">65dp</dimen>
    <dimen name="all_apps_bottom_sheet_horizontal_padding">28dp</dimen>

<!-- Dynamic grid -->
    <dimen name="dynamic_grid_edge_margin">27.59dp</dimen>
    <dimen name="cell_layout_padding">36dp</dimen>

<!-- Dragging -->
    <dimen name="drop_target_text_size">20sp</dimen>
    <dimen name="dynamic_grid_drop_target_size">72dp</dimen>
@@ -28,6 +30,7 @@
    <dimen name="drop_target_button_gap">32dp</dimen>
    <dimen name="drop_target_top_margin">32dp</dimen>
    <dimen name="drop_target_bottom_margin">32dp</dimen>

<!-- Hotseat -->
    <dimen name="spring_loaded_hotseat_top_margin">164dp</dimen>

+19 −0
Original line number Diff line number Diff line
@@ -241,9 +241,28 @@
        if not specified -->
        <attr name="borderSpaceTwoPanelLandscapeVertical" format="float" />

        <!-- These min cell values are only used if GridDisplayOption#isScalable is true -->
        <!-- defaults to minCellHeight, if not specified -->
        <attr name="allAppsCellHeight" format="float" />
        <!-- defaults to minCellWidth, if not specified -->
        <attr name="allAppsCellWidth" format="float" />
        <!-- defaults to allAppsCellHeight, if not specified -->
        <attr name="allAppsCellHeightLandscape" format="float" />
        <!-- defaults to allAppsCellWidth, if not specified -->
        <attr name="allAppsCellWidthLandscape" format="float" />
        <!-- defaults to allAppsCellHeight, if not specified -->
        <attr name="allAppsCellHeightTwoPanelPortrait" format="float" />
        <!-- defaults to allAppsCellWidth, if not specified -->
        <attr name="allAppsCellWidthTwoPanelPortrait" format="float" />
        <!-- defaults to allAppsCellHeight, if not specified -->
        <attr name="allAppsCellHeightTwoPanelLandscape" format="float" />
        <!-- defaults to allAppsCellWidth, if not specified -->
        <attr name="allAppsCellWidthTwoPanelLandscape" format="float" />
        <!-- defaults to borderSpace, if not specified -->
        <attr name="allAppsBorderSpace" format="float" />
        <!-- defaults to allAppsBorderSpace, if not specified -->
        <attr name="allAppsBorderSpaceLandscape" format="float" />
        <!-- defaults to allAppsBorderSpace, if not specified -->
        <attr name="allAppsBorderSpaceTwoPanelPortrait" format="float" />
        <!-- defaults to allAppsBorderSpace, if not specified -->
        <attr name="allAppsBorderSpaceTwoPanelLandscape" format="float" />
Loading