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

Commit 07286432 authored by Clark Scheff's avatar Clark Scheff Committed by Matt Garnes
Browse files

Add clear all recents action to recents panel

Change-Id: I2243ebc83abc483e78b112900a653d7e61edc5ba
parent 3d9e2d15
Loading
Loading
Loading
Loading
+23 −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. ?android:attr/colorControlHighlight"
-->

<selector xmlns:android="http://schemas.android.com/apk/res/android">

    <item android:state_pressed="true" android:color="#80ffffff"/>
    <item android:color="#ffffffff"/>

</selector>
+23 −0
Original line number Original line Diff line number Diff line
<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright (C) 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.
     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.
-->

<selector xmlns:android="http://schemas.android.com/apk/res/android">
    <item android:state_pressed="true"
         android:drawable="@drawable/clear_recents_pressed" />
    <item
         android:drawable="@drawable/clear_recents_normal" />
</selector>
+24 −0
Original line number Original line Diff line number Diff line
<!--
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.
-->
<vector xmlns:android="http://schemas.android.com/apk/res/android"
        android:width="24.0dp"
        android:height="24.0dp"
        android:viewportWidth="24.0"
        android:viewportHeight="24.0">
    <path
        android:pathData="M19,6.4L17.6 5 12 10.6 6.4 5 5 6.4 10.6 12 5 17.6 6.4 19 12 13.4 17.6 19 19 17.6 13.4 12 z"
        android:fillColor="#FFFFFF"/>
</vector>
+24 −0
Original line number Original line Diff line number Diff line
<!--
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.
-->
<vector xmlns:android="http://schemas.android.com/apk/res/android"
        android:width="24.0dp"
        android:height="24.0dp"
        android:viewportWidth="24.0"
        android:viewportHeight="24.0">
    <path
        android:pathData="M19,6.4L17.6 5 12 10.6 6.4 5 5 6.4 10.6 12 5 17.6 6.4 19 12 13.4 17.6 19 19 17.6 13.4 12 z"
        android:fillColor="#CCFFFFFF"/>
</vector>
+28 −6
Original line number Original line Diff line number Diff line
@@ -26,13 +26,35 @@
        android:scaleType="fitXY"
        android:scaleType="fitXY"
        android:src="@drawable/recents_status_gradient" />
        android:src="@drawable/recents_status_gradient" />


    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:orientation="vertical" >

        <!-- Recents View -->
        <!-- Recents View -->
        <com.android.systemui.recents.views.RecentsView
        <com.android.systemui.recents.views.RecentsView
            android:id="@+id/recents_view"
            android:id="@+id/recents_view"
            android:layout_width="match_parent" 
            android:layout_width="match_parent" 
        android:layout_height="match_parent"
            android:layout_height="0dp"
            android:layout_weight="1"
            android:focusable="true" />
            android:focusable="true" />


        <TextView
            android:id="@+id/clear_recents"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_gravity="center_horizontal"
            android:layout_marginBottom="8dp"
            android:layout_marginTop="8dp"
            android:gravity="center"
            android:drawableStart="@drawable/clear_recents"
            android:textAllCaps="true"
            android:textSize="16dp"
            android:textColor="@color/clear_recents_text_color"
            android:text="@string/clear_recents" />
                                                                                            
    </LinearLayout>

    <!-- Empty View -->
    <!-- Empty View -->
    <ViewStub android:id="@+id/empty_view_stub"
    <ViewStub android:id="@+id/empty_view_stub"
           android:layout="@layout/recents_empty"
           android:layout="@layout/recents_empty"
Loading