1<?xml version="1.0" encoding="utf-8"?><!-- Copyright (C) 2022 The Android Open Source Project 2 3 Licensed under the Apache License, Version 2.0 (the "License"); 4 you may not use this file except in compliance with the License. 5 You may obtain a copy of the License at 6 7 http://www.apache.org/licenses/LICENSE-2.0 8 9 Unless required by applicable law or agreed to in writing, software 10 distributed under the License is distributed on an "AS IS" BASIS, 11 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 See the License for the specific language governing permissions and 13 limitations under the License. 14--> 15 16<merge xmlns:android="http://schemas.android.com/apk/res/android" 17 xmlns:app="http://schemas.android.com/apk/res-auto"> 18 19 <LinearLayout 20 android:layout_width="match_parent" 21 android:layout_height="wrap_content" 22 android:gravity="center_horizontal" 23 android:orientation="vertical"> 24 25 <TextView 26 style="@style/TextAppearance.TaskbarEdu.Title" 27 android:layout_width="match_parent" 28 android:layout_height="wrap_content" 29 android:text="@string/taskbar_edu_stashing" /> 30 31 <com.airbnb.lottie.LottieAnimationView 32 android:id="@+id/animation" 33 android:layout_width="match_parent" 34 android:layout_height="wrap_content" 35 android:layout_marginTop="16dp" 36 app:lottie_rawRes="@raw/taskbar_edu_stashing_transient" /> 37 </LinearLayout> 38 39 <LinearLayout 40 android:layout_width="match_parent" 41 android:layout_height="wrap_content" 42 android:gravity="center_horizontal" 43 android:orientation="vertical"> 44 45 <TextView 46 style="@style/TextAppearance.TaskbarEdu.Title" 47 android:layout_width="match_parent" 48 android:layout_height="wrap_content" 49 android:text="@string/taskbar_edu_splitscreen" /> 50 51 <com.airbnb.lottie.LottieAnimationView 52 android:id="@id/animation" 53 android:layout_width="match_parent" 54 android:layout_height="wrap_content" 55 android:layout_marginTop="16dp" 56 app:lottie_rawRes="@raw/taskbar_edu_splitscreen_transient" /> 57 </LinearLayout> 58 59 <LinearLayout 60 android:layout_width="match_parent" 61 android:layout_height="wrap_content" 62 android:gravity="center_horizontal" 63 android:orientation="vertical"> 64 65 <TextView 66 style="@style/TextAppearance.TaskbarEdu.Title" 67 android:layout_width="match_parent" 68 android:layout_height="wrap_content" 69 android:text="@string/taskbar_edu_suggestions" /> 70 71 <com.airbnb.lottie.LottieAnimationView 72 android:id="@id/animation" 73 android:layout_width="match_parent" 74 android:layout_height="wrap_content" 75 android:layout_marginTop="16dp" 76 app:lottie_rawRes="@raw/taskbar_edu_suggestions_transient" /> 77 </LinearLayout> 78</merge>