|
@@ -0,0 +1,61 @@
|
|
|
|
|
+<?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"
|
|
|
|
|
+ android:background="@color/C4D000000">
|
|
|
|
|
+
|
|
|
|
|
+ <ImageView
|
|
|
|
|
+ android:id="@+id/image_view_tutorial_share"
|
|
|
|
|
+ android:layout_width="wrap_content"
|
|
|
|
|
+ android:layout_height="wrap_content"
|
|
|
|
|
+ android:layout_marginTop="67dp"
|
|
|
|
|
+ app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
|
+ app:layout_constraintTop_toTopOf="parent"
|
|
|
|
|
+ app:srcCompat="@drawable/ic_bubble_tutorial_share"
|
|
|
|
|
+ />
|
|
|
|
|
+
|
|
|
|
|
+ <TextView
|
|
|
|
|
+ android:layout_width="wrap_content"
|
|
|
|
|
+ android:layout_height="wrap_content"
|
|
|
|
|
+ android:gravity="center_horizontal"
|
|
|
|
|
+ android:lineSpacingExtra="4sp"
|
|
|
|
|
+ android:textColor="@color/C000000"
|
|
|
|
|
+ android:textSize="12sp"
|
|
|
|
|
+ android:layout_marginTop="18dp"
|
|
|
|
|
+ android:layout_marginBottom="22dp"
|
|
|
|
|
+ app:layout_constraintBottom_toBottomOf="@+id/image_view_tutorial_share"
|
|
|
|
|
+ app:layout_constraintEnd_toEndOf="@+id/image_view_tutorial_share"
|
|
|
|
|
+ app:layout_constraintStart_toStartOf="@+id/image_view_tutorial_share"
|
|
|
|
|
+ app:layout_constraintTop_toTopOf="@+id/image_view_tutorial_share"
|
|
|
|
|
+ tools:text="전체 콘텐츠
|
|
|
|
|
+공유하고 싶다면 꾹!"
|
|
|
|
|
+ />
|
|
|
|
|
+
|
|
|
|
|
+ <ImageView
|
|
|
|
|
+ android:id="@+id/image_view_tutorial_tag"
|
|
|
|
|
+ android:layout_width="wrap_content"
|
|
|
|
|
+ android:layout_height="wrap_content"
|
|
|
|
|
+ android:layout_marginStart="20dp"
|
|
|
|
|
+ android:layout_marginBottom="74dp"
|
|
|
|
|
+ app:layout_constraintBottom_toBottomOf="parent"
|
|
|
|
|
+ app:layout_constraintStart_toStartOf="parent"
|
|
|
|
|
+ app:srcCompat="@drawable/ic_bubble_tutorial_tag"
|
|
|
|
|
+ />
|
|
|
|
|
+
|
|
|
|
|
+ <TextView
|
|
|
|
|
+ android:layout_width="wrap_content"
|
|
|
|
|
+ android:layout_height="wrap_content"
|
|
|
|
|
+ android:lineSpacingExtra="4sp"
|
|
|
|
|
+ android:textColor="@color/C000000"
|
|
|
|
|
+ android:textSize="12sp"
|
|
|
|
|
+ app:layout_constraintBottom_toBottomOf="@+id/image_view_tutorial_tag"
|
|
|
|
|
+ app:layout_constraintEnd_toEndOf="@+id/image_view_tutorial_tag"
|
|
|
|
|
+ app:layout_constraintStart_toStartOf="@+id/image_view_tutorial_tag"
|
|
|
|
|
+ app:layout_constraintTop_toTopOf="@+id/image_view_tutorial_tag"
|
|
|
|
|
+ tools:text="태그를 누르면
|
|
|
|
|
+다른 콘텐츠를 확인 가능해요"
|
|
|
|
|
+ />
|
|
|
|
|
+</android.support.constraint.ConstraintLayout>
|