Преглед на файлове

[튜토리얼][Common] 리스티클 커버의 튜토리얼 아이콘 추가

Hasemi преди 7 години
родител
ревизия
bd25d046b9

+ 7 - 0
app/src/main/res/drawable/ic_bubble_tutorial_share.xml

@@ -0,0 +1,7 @@
+<vector android:height="59dp" android:viewportHeight="282"
+    android:viewportWidth="561" android:width="129dp" xmlns:android="http://schemas.android.com/apk/res/android">
+    <path android:fillColor="#000" android:fillType="evenOdd" android:pathData="M257.5,22l11,-22 11,22H526v214.02H11V22h246.5z"/>
+    <path android:fillColor="#FFF" android:fillType="evenOdd"
+        android:pathData="M13,24v210.02h511V24H278.264L268.5,4.472 258.736,24H13z"
+        android:strokeColor="#000" android:strokeLineJoin="miter" android:strokeWidth="4"/>
+</vector>

+ 7 - 0
app/src/main/res/drawable/ic_bubble_tutorial_tag.xml

@@ -0,0 +1,7 @@
+<vector android:height="71dp" android:viewportHeight="282"
+    android:viewportWidth="725" android:width="181dp" xmlns:android="http://schemas.android.com/apk/res/android">
+    <path android:fillColor="#000" android:fillType="evenOdd" android:pathData="M99.5,260l11,22 11,-22l569.07,-0l0,-214L11,46L11,260l88.5,-0z"/>
+    <path android:fillColor="#FFF" android:fillType="evenOdd"
+        android:pathData="M13,258l0,-210l675.57,-0L688.57,258L120.265,258L110.5,277.528 100.736,258L13,258z"
+        android:strokeColor="#000" android:strokeLineJoin="round" android:strokeWidth="4"/>
+</vector>

+ 6 - 0
app/src/main/res/layout/tutorial_bucket_list_detail.xml

@@ -0,0 +1,6 @@
+<?xml version="1.0" encoding="utf-8"?>
+<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
+                                             android:layout_width="match_parent"
+                                             android:layout_height="match_parent">
+
+</android.support.constraint.ConstraintLayout>

+ 6 - 0
app/src/main/res/layout/tutorial_bucket_list_update.xml

@@ -0,0 +1,6 @@
+<?xml version="1.0" encoding="utf-8"?>
+<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
+                                             android:layout_width="match_parent"
+                                             android:layout_height="match_parent">
+
+</android.support.constraint.ConstraintLayout>

+ 61 - 0
app/src/main/res/layout/tutorial_listicle_cover.xml

@@ -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>

+ 6 - 0
app/src/main/res/layout/tutorial_listicle_detail.xml

@@ -0,0 +1,6 @@
+<?xml version="1.0" encoding="utf-8"?>
+<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
+                                             android:layout_width="match_parent"
+                                             android:layout_height="match_parent">
+
+</android.support.constraint.ConstraintLayout>