• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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    <View
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        android:background="@drawable/hotseat_icon"
16        android:clipToOutline="true"
17
18        app:layout_constraintDimensionRatio="1:1"
19        app:layout_constraintHorizontal_chainStyle="spread_inside"
20        app:layout_constraintTop_toTopOf="parent"
21        app:layout_constraintStart_toStartOf="parent"
22        app:layout_constraintEnd_toStartOf="@id/hotseat_icon_2"/>
23
24    <View
25        android:id="@+id/hotseat_icon_2"
26        android:layout_width="@dimen/gesture_tutorial_hotseat_icon_size"
27        android:layout_height="@dimen/gesture_tutorial_hotseat_icon_size"
28        android:background="@drawable/hotseat_icon"
29        android:clipToOutline="true"
30
31        app:layout_constraintDimensionRatio="1:1"
32        app:layout_constraintTop_toTopOf="parent"
33        app:layout_constraintStart_toEndOf="@id/hotseat_icon_1"
34        app:layout_constraintEnd_toStartOf="@id/hotseat_icon_3"/>
35
36    <View
37        android:id="@+id/hotseat_icon_3"
38        android:layout_width="@dimen/gesture_tutorial_hotseat_icon_size"
39        android:layout_height="@dimen/gesture_tutorial_hotseat_icon_size"
40        android:background="@drawable/hotseat_icon"
41        android:clipToOutline="true"
42
43        app:layout_constraintDimensionRatio="1:1"
44        app:layout_constraintTop_toTopOf="parent"
45        app:layout_constraintStart_toEndOf="@id/hotseat_icon_2"
46        app:layout_constraintEnd_toStartOf="@id/hotseat_icon_4"/>
47
48    <View
49        android:id="@+id/hotseat_icon_4"
50        android:layout_width="@dimen/gesture_tutorial_hotseat_icon_size"
51        android:layout_height="@dimen/gesture_tutorial_hotseat_icon_size"
52        android:background="@drawable/hotseat_icon"
53        android:clipToOutline="true"
54
55        app:layout_constraintDimensionRatio="1:1"
56        app:layout_constraintTop_toTopOf="parent"
57        app:layout_constraintStart_toEndOf="@id/hotseat_icon_3"
58        app:layout_constraintEnd_toEndOf="parent"/>
59
60    <View
61        android:layout_width="0dp"
62        android:layout_height="@dimen/gesture_tutorial_hotseat_search_height"
63        android:layout_marginTop="@dimen/gesture_tutorial_hotseat_icon_search_margin"
64        android:background="@drawable/hotseat_search_bar"
65        android:clipToOutline="true"
66
67        app:layout_constraintTop_toBottomOf="@id/hotseat_icon_1"
68        app:layout_constraintStart_toStartOf="parent"
69        app:layout_constraintEnd_toEndOf="parent"/>
70
71</androidx.constraintlayout.widget.ConstraintLayout>