132 lines
5.6 KiB
XML
132 lines
5.6 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!-- Copyright (C) 2023 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.
|
|
-->
|
|
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:androidprv="http://schemas.android.com/apk/prv/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content">
|
|
|
|
<TextView
|
|
android:id="@+id/title"
|
|
style="@style/TextAppearance.TaskbarEduTooltip.Title"
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:paddingBottom="@dimen/taskbar_edu_tooltip_vertical_margin"
|
|
android:text="@string/taskbar_edu_features"
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
app:layout_constraintTop_toTopOf="parent"
|
|
app:layout_constraintBottom_toTopOf="@id/splitscreen_animation"/>
|
|
|
|
<com.airbnb.lottie.LottieAnimationView
|
|
android:id="@+id/splitscreen_animation"
|
|
android:layout_width="@dimen/taskbar_edu_features_lottie_width"
|
|
android:layout_height="@dimen/taskbar_edu_features_lottie_height"
|
|
|
|
app:lottie_autoPlay="true"
|
|
app:lottie_loop="true"
|
|
|
|
app:layout_constraintEnd_toEndOf="@id/splitscreen_text"
|
|
app:layout_constraintStart_toStartOf="@id/splitscreen_text"
|
|
app:layout_constraintTop_toBottomOf="@id/title" />
|
|
|
|
<TextView
|
|
android:id="@+id/splitscreen_text"
|
|
style="@style/TextAppearance.TaskbarEduTooltip.Subtext"
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/taskbar_edu_splitscreen"
|
|
|
|
app:layout_constraintEnd_toStartOf="@id/settings_text"
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
app:layout_constraintTop_toBottomOf="@id/splitscreen_animation" />
|
|
|
|
<androidx.constraintlayout.widget.Group
|
|
android:id="@+id/settings_edu"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
app:constraint_referenced_ids="settings_animation,settings_text" />
|
|
|
|
<com.airbnb.lottie.LottieAnimationView
|
|
android:id="@+id/settings_animation"
|
|
android:layout_width="@dimen/taskbar_edu_features_lottie_width"
|
|
android:layout_height="@dimen/taskbar_edu_features_lottie_height"
|
|
|
|
app:lottie_autoPlay="true"
|
|
app:lottie_loop="true"
|
|
app:lottie_rawRes="@raw/taskbar_edu_settings"
|
|
|
|
app:layout_constraintEnd_toEndOf="@id/settings_text"
|
|
app:layout_constraintStart_toStartOf="@id/settings_text"
|
|
app:layout_constraintTop_toBottomOf="@id/title" />
|
|
|
|
<TextView
|
|
android:id="@+id/settings_text"
|
|
style="@style/TextAppearance.TaskbarEduTooltip.Subtext"
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/taskbar_edu_settings_persistent"
|
|
android:layout_marginStart="@dimen/taskbar_edu_features_horizontal_spacing"
|
|
|
|
app:layout_constraintEnd_toStartOf="@id/suggestions_text"
|
|
app:layout_constraintStart_toEndOf="@id/splitscreen_text"
|
|
app:layout_constraintTop_toBottomOf="@id/settings_animation" />
|
|
|
|
<com.airbnb.lottie.LottieAnimationView
|
|
android:id="@+id/suggestions_animation"
|
|
android:layout_width="@dimen/taskbar_edu_features_lottie_width"
|
|
android:layout_height="@dimen/taskbar_edu_features_lottie_height"
|
|
|
|
app:lottie_autoPlay="true"
|
|
app:lottie_loop="true"
|
|
|
|
app:layout_constraintEnd_toEndOf="@id/suggestions_text"
|
|
app:layout_constraintStart_toStartOf="@id/suggestions_text"
|
|
app:layout_constraintTop_toBottomOf="@id/title" />
|
|
|
|
<TextView
|
|
android:id="@+id/suggestions_text"
|
|
style="@style/TextAppearance.TaskbarEduTooltip.Subtext"
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/taskbar_edu_suggestions"
|
|
android:layout_marginStart="@dimen/taskbar_edu_features_horizontal_spacing"
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
app:layout_constraintStart_toEndOf="@id/settings_text"
|
|
app:layout_constraintTop_toBottomOf="@id/suggestions_animation" />
|
|
|
|
<androidx.constraintlayout.widget.Barrier
|
|
android:id="@+id/edu_barrier_bottom"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
app:barrierDirection="bottom"
|
|
app:constraint_referenced_ids="splitscreen_text,settings_text,suggestions_text" />
|
|
|
|
<Button
|
|
android:id="@+id/done_button"
|
|
style="@style/TaskbarEdu.Button.Done"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="32dp"
|
|
android:text="@string/taskbar_edu_done"
|
|
android:textColor="?androidprv:attr/textColorOnAccent"
|
|
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
app:layout_constraintTop_toBottomOf="@id/edu_barrier_bottom" />
|
|
</androidx.constraintlayout.widget.ConstraintLayout> |