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

Commit e0e45bc2 authored by Winson Chung's avatar Winson Chung
Browse files

Re-enabling task based filtering in Recents using package name.

- Also front-loading creating the new thumbnail when animating up from Recents
parent 06795630
Loading
Loading
Loading
Loading
+18 −0
Original line number Original line Diff line number Diff line
<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright (C) 2014 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.
-->

<ripple xmlns:android="http://schemas.android.com/apk/res/android"
    android:color="?android:attr/colorControlHighlight" />
 No newline at end of file
+3 −1
Original line number Original line Diff line number Diff line
@@ -34,7 +34,8 @@
            android:layout_height="@dimen/recents_task_view_application_icon_size"
            android:layout_height="@dimen/recents_task_view_application_icon_size"
            android:layout_marginStart="8dp"
            android:layout_marginStart="8dp"
            android:layout_gravity="center_vertical|start"
            android:layout_gravity="center_vertical|start"
            android:padding="8dp" />
            android:padding="8dp"
            android:background="@drawable/recents_button_bg" />
        <TextView
        <TextView
            android:id="@+id/activity_description"
            android:id="@+id/activity_description"
            android:layout_width="match_parent"
            android:layout_width="match_parent"
@@ -57,6 +58,7 @@
            android:layout_marginEnd="4dp"
            android:layout_marginEnd="4dp"
            android:layout_gravity="center_vertical|end"
            android:layout_gravity="center_vertical|end"
            android:padding="18dp"
            android:padding="18dp"
            android:background="@drawable/recents_button_bg"
            android:visibility="invisible"
            android:visibility="invisible"
            android:src="@drawable/recents_dismiss_light" />
            android:src="@drawable/recents_dismiss_light" />
    </com.android.systemui.recents.views.TaskBarView>
    </com.android.systemui.recents.views.TaskBarView>
+2 −2
Original line number Original line Diff line number Diff line
@@ -111,9 +111,9 @@
    <!-- The duration in seconds to wait before the dismiss buttons are shown. -->
    <!-- The duration in seconds to wait before the dismiss buttons are shown. -->
    <integer name="recents_task_bar_dismiss_delay_seconds">3</integer>
    <integer name="recents_task_bar_dismiss_delay_seconds">3</integer>
    <!-- The min animation duration for animating views that are currently visible. -->
    <!-- The min animation duration for animating views that are currently visible. -->
    <integer name="recents_filter_animate_current_views_min_duration">175</integer>
    <integer name="recents_filter_animate_current_views_duration">250</integer>
    <!-- The min animation duration for animating views that are newly visible. -->
    <!-- The min animation duration for animating views that are newly visible. -->
    <integer name="recents_filter_animate_new_views_min_duration">125</integer>
    <integer name="recents_filter_animate_new_views_duration">250</integer>
    <!-- The min animation duration for animating the task bar in. -->
    <!-- The min animation duration for animating the task bar in. -->
    <integer name="recents_animate_task_bar_enter_duration">275</integer>
    <integer name="recents_animate_task_bar_enter_duration">275</integer>
    <!-- The animation delay for animating the first task in. This should roughly be the animation
    <!-- The animation delay for animating the first task in. This should roughly be the animation
+1 −1
Original line number Original line Diff line number Diff line
@@ -30,7 +30,7 @@ public class Constants {
            // Enables the screenshot app->Recents transition
            // Enables the screenshot app->Recents transition
            public static final boolean EnableScreenshotAppTransition = false;
            public static final boolean EnableScreenshotAppTransition = false;
            // Enables the filtering of tasks according to their grouping
            // Enables the filtering of tasks according to their grouping
            public static final boolean EnableTaskFiltering = false;
            public static final boolean EnableTaskFiltering = true;
            // Enables clipping of tasks against each other
            // Enables clipping of tasks against each other
            public static final boolean EnableTaskStackClipping = true;
            public static final boolean EnableTaskStackClipping = true;
            // Enables the use of theme colors as the task bar background
            // Enables the use of theme colors as the task bar background
+6 −6
Original line number Original line Diff line number Diff line
@@ -47,8 +47,8 @@ public class RecentsConfiguration {
    public Interpolator quintOutInterpolator;
    public Interpolator quintOutInterpolator;


    /** Filtering */
    /** Filtering */
    public int filteringCurrentViewsMinAnimDuration;
    public int filteringCurrentViewsAnimDuration;
    public int filteringNewViewsMinAnimDuration;
    public int filteringNewViewsAnimDuration;


    /** Insets */
    /** Insets */
    public Rect systemInsets = new Rect();
    public Rect systemInsets = new Rect();
@@ -151,10 +151,10 @@ public class RecentsConfiguration {
                res.getDimensionPixelSize(R.dimen.recents_animation_movement_in_dps_per_second);
                res.getDimensionPixelSize(R.dimen.recents_animation_movement_in_dps_per_second);


        // Filtering
        // Filtering
        filteringCurrentViewsMinAnimDuration =
        filteringCurrentViewsAnimDuration =
                res.getInteger(R.integer.recents_filter_animate_current_views_min_duration);
                res.getInteger(R.integer.recents_filter_animate_current_views_duration);
        filteringNewViewsMinAnimDuration =
        filteringNewViewsAnimDuration =
                res.getInteger(R.integer.recents_filter_animate_new_views_min_duration);
                res.getInteger(R.integer.recents_filter_animate_new_views_duration);


        // Insets
        // Insets
        displayRect.set(0, 0, dm.widthPixels, dm.heightPixels);
        displayRect.set(0, 0, dm.widthPixels, dm.heightPixels);
Loading