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

Commit db67e7c7 authored by Mario Bertschler's avatar Mario Bertschler Committed by Android (Google) Code Review
Browse files

Merge "All Apps transition with gradient and scrim." into ub-launcher3-dorval-polish

parents 0811bc50 48198d00
Loading
Loading
Loading
Loading
+16.1 KiB
Loading image diff...
+2 −0
Original line number Diff line number Diff line
@@ -32,6 +32,8 @@
        android:layout_width="match_parent"
        android:layout_height="match_parent">

        <include layout="@layout/gradient_scrim" />

        <!-- The workspace contains 5 screens of cells -->
        <!-- DO NOT CHANGE THE ID -->
        <com.android.launcher3.Workspace
+2 −0
Original line number Diff line number Diff line
@@ -33,6 +33,8 @@
        android:layout_width="match_parent"
        android:layout_height="match_parent">

        <include layout="@layout/gradient_scrim" />

        <!-- The workspace contains 5 screens of cells -->
        <!-- DO NOT CHANGE THE ID -->
        <com.android.launcher3.Workspace
+2 −0
Original line number Diff line number Diff line
@@ -32,6 +32,8 @@
        android:layout_width="match_parent"
        android:layout_height="match_parent">

        <include layout="@layout/gradient_scrim" />

        <!-- The workspace contains 5 screens of cells -->
        <!-- DO NOT CHANGE THE ID -->
        <com.android.launcher3.Workspace
+31 −0
Original line number Diff line number Diff line
<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright (C) 2017 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.
-->
<merge xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto">
    <com.android.launcher3.graphics.RadialGradientView
        android:id="@+id/gradient_bg"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:visibility="gone"
        app:layout_ignoreInsets="true"/>

    <com.android.launcher3.graphics.ScrimView
        android:id="@+id/scrim_bg"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:visibility="gone"
        app:layout_ignoreInsets="true"/>
</merge>
 No newline at end of file
Loading