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

Commit 4246d8db authored by android-build-team Robot's avatar android-build-team Robot
Browse files

Snap for 5511022 from d4e8bdbc to qt-release

Change-Id: I022dcba5978eddbd42f873885ce261ddd1aa51c6
parents 5a222033 d4e8bdbc
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
@@ -251,7 +251,7 @@ LOCAL_PROGUARD_ENABLED := full
LOCAL_PACKAGE_NAME := Launcher3QuickStepGo
LOCAL_PRIVILEGED_MODULE := true
LOCAL_PRODUCT_MODULE := true
LOCAL_OVERRIDES_PACKAGES := Home Launcher2 Launcher3 Launcher3QuickStep
LOCAL_OVERRIDES_PACKAGES := Home Launcher2 Launcher3 Launcher3QuickStep Launcher3GoIconRecents
LOCAL_REQUIRED_MODULES := privapp_whitelist_com.android.launcher3

LOCAL_FULL_LIBS_MANIFEST_FILES := \
@@ -297,7 +297,8 @@ LOCAL_PROGUARD_ENABLED := full

LOCAL_PACKAGE_NAME := Launcher3GoIconRecents
LOCAL_PRIVILEGED_MODULE := true
LOCAL_OVERRIDES_PACKAGES := Home Launcher2 Launcher3 Launcher3QuickStep
LOCAL_PRODUCT_MODULE := true
LOCAL_OVERRIDES_PACKAGES := Home Launcher2 Launcher3 Launcher3QuickStep Launcher3QuickStepGo
LOCAL_REQUIRED_MODULES := privapp_whitelist_com.android.launcher3

LOCAL_FULL_LIBS_MANIFEST_FILES := \
+6 −1
Original line number Diff line number Diff line
@@ -14,4 +14,9 @@
     See the License for the specific language governing permissions and
     limitations under the License.
-->
<merge/>
 No newline at end of file
<shape
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:shape="rectangle">
    <solid android:color="@android:color/darker_gray"/>
    <corners android:radius="2dp"/>
</shape>
+6 −6
Original line number Diff line number Diff line
@@ -14,10 +14,10 @@
     See the License for the specific language governing permissions and
     limitations under the License.
-->
<com.android.quickstep.hints.ChipsContainer
<shape
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="@dimen/chip_hint_height"
    android:layout_gravity="bottom"
    android:gravity="center_horizontal"
    android:orientation="horizontal"/>
 No newline at end of file
    android:shape="rectangle">
    <solid android:color="@android:color/transparent"/>
    <stroke android:color="@android:color/white" android:width="4px"/>
    <corners android:radius="2dp"/>
</shape>
 No newline at end of file
+35 −0
Original line number Diff line number Diff line
@@ -14,13 +14,22 @@
     See the License for the specific language governing permissions and
     limitations under the License.
-->
<resources>
    <dimen name="task_item_half_vert_margin">8dp</dimen>
    <dimen name="task_thumbnail_and_icon_view_size">60dp</dimen>
    <dimen name="task_thumbnail_height">60dp</dimen>
    <dimen name="task_thumbnail_width">36dp</dimen>
    <dimen name="task_icon_size">36dp</dimen>

    <dimen name="clear_all_button_width">106dp</dimen>
    <dimen name="clear_all_button_height">36dp</dimen>
</resources>
 No newline at end of file
<com.android.quickstep.views.ClearAllItemView
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/clear_all_item_view"
    android:layout_width="match_parent"
    android:layout_height="match_parent">
    <Button
        android:id="@+id/clear_all_button"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginVertical="16dp"
        android:layout_gravity="center_horizontal"
        android:paddingHorizontal="32dp"
        android:background="@drawable/clear_all_button"
        android:gravity="center"
        android:text="@string/recents_clear_all"
        android:textAllCaps="false"
        android:textColor="@color/clear_all_button_text"
        android:textSize="14sp"/>
</com.android.quickstep.views.ClearAllItemView>
+3 −23
Original line number Diff line number Diff line
@@ -19,31 +19,11 @@
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical">
    <LinearLayout
        android:id="@+id/recent_task_content_view"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:orientation="vertical"
        android:visibility="gone">
    <androidx.recyclerview.widget.RecyclerView
        android:id="@+id/recent_task_recycler_view"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
            android:layout_weight="1"
        android:scrollbars="none"/>
        <Button
            android:id="@+id/clear_all_button"
            android:layout_width="@dimen/clear_all_button_width"
            android:layout_height="@dimen/clear_all_button_height"
            android:layout_gravity="center_horizontal"
            android:layout_marginVertical="@dimen/task_item_half_vert_margin"
            android:background="@drawable/clear_all_button"
            android:gravity="center"
            android:text="@string/recents_clear_all"
            android:textAllCaps="false"
            android:textColor="@color/clear_all_button_text"
            android:textSize="14sp"/>
    </LinearLayout>
    <TextView
        android:id="@+id/recent_task_empty_view"
        android:layout_width="match_parent"
Loading