Update gesture nav colors and animation for dark/light theming

- Added light mode gesture feedback animations
- Added color resources for the fake launcher wallpaper. Also using these color resources in the feedback animations for consistency
- Using fake previous app task color in feedback animations for consistency

Bug: 169687177
Test: manual
Change-Id: I1d28212e02c2ae750ce6241b64aa90f52b827c76
This commit is contained in:
Schneider Victor-tulias
2021-05-25 12:34:47 -07:00
parent fa7c98ee45
commit 9909544c8a
22 changed files with 6009 additions and 42 deletions

View File

@@ -13,8 +13,19 @@
See the License for the specific language governing permissions and
limitations under the License.
-->
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<corners android:radius="50dp"/>
<solid android:color="@color/gesture_tutorial_primary_color"/>
</shape>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item>
<shape
android:id="@android:id/mask"
android:shape="rectangle">
<corners android:radius="50dp"/>
</shape>
</item>
<item>
<shape
android:shape="rectangle">
<corners android:radius="50dp"/>
<solid android:color="@color/gesture_tutorial_primary_color"/>
</shape>
</item>
</layer-list>