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

Commit a30b51ce authored by Peter Schiller's avatar Peter Schiller
Browse files

Adding stateful caret drawable

Change-Id: Iba30da09f882297f789c405f932fef10617bba89
parent c9dec56c
Loading
Loading
Loading
Loading

res/drawable/ic_allapps_caret.xml

deleted100644 → 0
+0 −26
Original line number Diff line number Diff line
<?xml version="1.0" encoding="utf-8"?>
<!--
     Copyright (C) 2016 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.
     You may obtain a copy of the License at

          http://www.apache.org/licenses/LICENSE-2.0

     Unless required by applicable law or agreed to in writing, software
     distributed under the License is distributed on an "AS IS" BASIS,
     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     See the License for the specific language governing permissions and
     limitations under the License.
-->
<vector
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:height="24dp"
    android:viewportHeight="48.0"
    android:viewportWidth="48.0"
    android:width="24dp" >
    <path
        android:fillColor="#FFFFFF"
        android:pathData="M14.83,30.83L24,21.66l9.17,9.17L36,28 24,16 12,28z"/>
</vector>
+4 −0
Original line number Diff line number Diff line
<?xml version="1.0" encoding="utf-8"?>
<pathInterpolator
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:pathData="M 0.0,0.0 c 0.0001,0.0 0.0,1.0 1.0,1.0" />
+1 −0
Original line number Diff line number Diff line
@@ -36,6 +36,7 @@

    <color name="outline_color">#FFFFFFFF</color>
    <color name="all_apps_divider_color">#1E000000</color>
    <color name="all_apps_caret_color">#FFFFFFFF</color>

    <color name="spring_loaded_panel_color">#40FFFFFF</color>
    <color name="spring_loaded_highlighted_panel_border_color">#FFF</color>
+3 −0
Original line number Diff line number Diff line
@@ -57,6 +57,9 @@
    <!-- The distance at which the animation should take the max duration -->
    <integer name="config_dropAnimMaxDist">800</integer>

    <!-- The duration of the caret animation -->
    <integer name="config_caretAnimationDuration">200</integer>

<!-- Hotseat -->
    <bool name="hotseat_transpose_layout_with_orientation">true</bool>

+4 −2
Original line number Diff line number Diff line
@@ -74,6 +74,8 @@
    <dimen name="all_apps_empty_search_bg_top_offset">144dp</dimen>
    <dimen name="all_apps_background_canvas_width">700dp</dimen>
    <dimen name="all_apps_background_canvas_height">475dp</dimen>
    <dimen name="all_apps_caret_stroke_width">2dp</dimen>
    <dimen name="all_apps_caret_inset">8dp</dimen>

<!-- Search bar in All Apps -->
    <dimen name="all_apps_header_max_elevation">3dp</dimen>
Loading