1<?xml version="1.0" encoding="utf-8"?>
2<androidx.constraintlayout.widget.ConstraintLayout
3    xmlns:android="http://schemas.android.com/apk/res/android"
4    xmlns:app="http://schemas.android.com/apk/res-auto"
5    android:layout_width="match_parent"
6    android:layout_height="wrap_content"
7    android:paddingBottom="70dp"
8    android:paddingStart="26dp"
9    android:paddingEnd="26dp">
10
11    <androidx.cardview.widget.CardView
12        android:id="@+id/hotseat_icon_1"
13        android:layout_width="@dimen/gesture_tutorial_hotseat_icon_size"
14        android:layout_height="@dimen/gesture_tutorial_hotseat_icon_size"
15
16        app:cardElevation="0dp"
17        app:cardCornerRadius="@dimen/gesture_tutorial_hotseat_icon_corner_radius"
18        app:cardBackgroundColor="@color/mock_app_icon_1"
19        app:layout_constraintDimensionRatio="1:1"
20        app:layout_constraintHorizontal_chainStyle="spread_inside"
21        app:layout_constraintTop_toTopOf="parent"
22        app:layout_constraintStart_toStartOf="parent"
23        app:layout_constraintEnd_toStartOf="@id/hotseat_icon_2"/>
24
25    <androidx.cardview.widget.CardView
26        android:id="@+id/hotseat_icon_2"
27        android:layout_width="@dimen/gesture_tutorial_hotseat_icon_size"
28        android:layout_height="@dimen/gesture_tutorial_hotseat_icon_size"
29
30        app:cardElevation="0dp"
31        app:cardCornerRadius="@dimen/gesture_tutorial_hotseat_icon_corner_radius"
32        app:cardBackgroundColor="@color/mock_app_icon_2"
33        app:layout_constraintDimensionRatio="1:1"
34        app:layout_constraintTop_toTopOf="parent"
35        app:layout_constraintStart_toEndOf="@id/hotseat_icon_1"
36        app:layout_constraintEnd_toStartOf="@id/hotseat_icon_3"/>
37
38    <androidx.cardview.widget.CardView
39        android:id="@+id/hotseat_icon_3"
40        android:layout_width="@dimen/gesture_tutorial_hotseat_icon_size"
41        android:layout_height="@dimen/gesture_tutorial_hotseat_icon_size"
42
43        app:cardElevation="0dp"
44        app:cardCornerRadius="@dimen/gesture_tutorial_hotseat_icon_corner_radius"
45        app:cardBackgroundColor="@color/mock_app_icon_3"
46        app:layout_constraintDimensionRatio="1:1"
47        app:layout_constraintTop_toTopOf="parent"
48        app:layout_constraintStart_toEndOf="@id/hotseat_icon_2"
49        app:layout_constraintEnd_toStartOf="@id/hotseat_icon_4"/>
50
51    <androidx.cardview.widget.CardView
52        android:id="@+id/hotseat_icon_4"
53        android:layout_width="@dimen/gesture_tutorial_hotseat_icon_size"
54        android:layout_height="@dimen/gesture_tutorial_hotseat_icon_size"
55
56        app:cardElevation="0dp"
57        app:cardCornerRadius="@dimen/gesture_tutorial_hotseat_icon_corner_radius"
58        app:cardBackgroundColor="@color/mock_app_icon_4"
59        app:layout_constraintDimensionRatio="1:1"
60        app:layout_constraintTop_toTopOf="parent"
61        app:layout_constraintStart_toEndOf="@id/hotseat_icon_3"
62        app:layout_constraintEnd_toEndOf="parent"/>
63
64    <androidx.cardview.widget.CardView
65        android:layout_width="0dp"
66        android:layout_height="@dimen/gesture_tutorial_hotseat_search_height"
67        android:layout_marginTop="@dimen/gesture_tutorial_hotseat_icon_search_margin"
68
69        app:cardElevation="0dp"
70        app:cardCornerRadius="@dimen/gesture_tutorial_hotseat_search_corner_radius"
71        app:cardBackgroundColor="@color/mock_search_bar"
72        app:layout_constraintTop_toBottomOf="@id/hotseat_icon_1"
73        app:layout_constraintStart_toStartOf="parent"
74        app:layout_constraintEnd_toEndOf="parent"/>
75
76</androidx.constraintlayout.widget.ConstraintLayout>