|
|
@@ -0,0 +1,59 @@
|
|
|
+<?xml version="1.0" encoding="utf-8"?>
|
|
|
+<android.support.constraint.ConstraintLayout
|
|
|
+ xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
+ xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
+ xmlns:tools="http://schemas.android.com/tools"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="match_parent"
|
|
|
+ tools:background="@color/C888888">
|
|
|
+
|
|
|
+ <ImageView
|
|
|
+ android:id="@+id/image_view_bubble"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ app:layout_constraintTop_toTopOf="parent"
|
|
|
+ android:layout_marginTop="198dp"
|
|
|
+ app:layout_constraintStart_toStartOf="parent"
|
|
|
+ android:layout_marginStart="30dp"
|
|
|
+ app:srcCompat="@drawable/bubble_tutorial_related_tags"
|
|
|
+ />
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:textSize="12sp"
|
|
|
+ android:textColor="@color/C000000"
|
|
|
+ android:lineSpacingExtra="4sp"
|
|
|
+ android:gravity="center_horizontal"
|
|
|
+ android:text="@string/tutorial_bucket_list_tag"
|
|
|
+ app:layout_constraintStart_toStartOf="@+id/image_view_bubble"
|
|
|
+ app:layout_constraintEnd_toEndOf="@+id/image_view_bubble"
|
|
|
+ app:layout_constraintTop_toTopOf="@+id/image_view_bubble"
|
|
|
+ app:layout_constraintBottom_toBottomOf="@+id/image_view_bubble"
|
|
|
+ />
|
|
|
+
|
|
|
+ <ImageView
|
|
|
+ android:id="@+id/image_view_bubble2"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ app:layout_constraintTop_toTopOf="parent"
|
|
|
+ android:layout_marginTop="83dp"
|
|
|
+ app:layout_constraintStart_toStartOf="parent"
|
|
|
+ android:layout_marginStart="118dp"
|
|
|
+ app:srcCompat="@drawable/bubble_tutorial_edit"
|
|
|
+ />
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:textSize="12sp"
|
|
|
+ android:textColor="@color/C000000"
|
|
|
+ android:lineSpacingExtra="4sp"
|
|
|
+ android:gravity="center_horizontal"
|
|
|
+ android:text="@string/tutorial_bucket_list_update"
|
|
|
+ app:layout_constraintStart_toStartOf="@+id/image_view_bubble2"
|
|
|
+ app:layout_constraintEnd_toEndOf="@+id/image_view_bubble2"
|
|
|
+ app:layout_constraintTop_toTopOf="@+id/image_view_bubble2"
|
|
|
+ app:layout_constraintBottom_toBottomOf="@+id/image_view_bubble2"
|
|
|
+ />
|
|
|
+</android.support.constraint.ConstraintLayout>
|