|
|
@@ -6,135 +6,169 @@
|
|
|
android:layout_width="match_parent"
|
|
|
android:layout_height="match_parent">
|
|
|
|
|
|
- <ImageView
|
|
|
- android:id="@+id/image_view"
|
|
|
- android:layout_width="wrap_content"
|
|
|
- android:layout_height="wrap_content"
|
|
|
- android:layout_marginTop="60dp"
|
|
|
- app:layout_constraintEnd_toEndOf="parent"
|
|
|
- app:layout_constraintStart_toStartOf="parent"
|
|
|
- app:layout_constraintTop_toTopOf="parent"
|
|
|
- app:srcCompat="@drawable/icon_research_none"
|
|
|
- />
|
|
|
-
|
|
|
- <TextView
|
|
|
- android:id="@+id/text_view_title"
|
|
|
- android:layout_width="wrap_content"
|
|
|
- android:layout_height="wrap_content"
|
|
|
- android:layout_marginTop="23dp"
|
|
|
- android:gravity="center_horizontal"
|
|
|
- android:lineSpacingExtra="8sp"
|
|
|
- android:text="@string/menu_check_title"
|
|
|
- android:textColor="@color/C000000"
|
|
|
- android:textSize="19sp"
|
|
|
- app:layout_constraintEnd_toEndOf="parent"
|
|
|
- app:layout_constraintStart_toStartOf="parent"
|
|
|
- app:layout_constraintTop_toBottomOf="@+id/image_view"
|
|
|
- />
|
|
|
-
|
|
|
- <TextView
|
|
|
- android:id="@+id/text_view_contents"
|
|
|
- android:layout_width="wrap_content"
|
|
|
- android:layout_height="wrap_content"
|
|
|
- android:layout_marginTop="11dp"
|
|
|
- android:gravity="center_horizontal"
|
|
|
- android:lineSpacingExtra="6sp"
|
|
|
- android:text="@string/menu_check_detail"
|
|
|
- android:textColor="@color/C999999"
|
|
|
- android:textSize="14sp"
|
|
|
- app:layout_constraintEnd_toEndOf="parent"
|
|
|
- app:layout_constraintStart_toStartOf="parent"
|
|
|
- app:layout_constraintTop_toBottomOf="@+id/text_view_title"
|
|
|
- />
|
|
|
-
|
|
|
- <LinearLayout
|
|
|
- android:id="@+id/linear_layout1"
|
|
|
+ <ScrollView
|
|
|
android:layout_width="match_parent"
|
|
|
- android:layout_height="wrap_content"
|
|
|
- android:layout_marginStart="25dp"
|
|
|
- android:layout_marginTop="45dp"
|
|
|
- android:layout_marginEnd="25dp"
|
|
|
- android:background="@color/CF8F8F8"
|
|
|
- android:gravity="center"
|
|
|
- android:orientation="vertical"
|
|
|
- app:layout_constraintEnd_toEndOf="parent"
|
|
|
- app:layout_constraintStart_toStartOf="parent"
|
|
|
- app:layout_constraintTop_toBottomOf="@+id/text_view_contents">
|
|
|
+ android:layout_height="0dp"
|
|
|
+ android:fillViewport="true"
|
|
|
+ app:layout_constraintBottom_toTopOf="@+id/layout_two_button"
|
|
|
+ app:layout_constraintTop_toTopOf="parent">
|
|
|
|
|
|
- <TextView
|
|
|
- android:layout_width="wrap_content"
|
|
|
- android:layout_height="wrap_content"
|
|
|
- android:layout_marginTop="25dp"
|
|
|
- android:lineSpacingExtra="6sp"
|
|
|
- android:text="@string/menu_check_guide"
|
|
|
- android:textColor="@color/C333333"
|
|
|
- android:textSize="14sp"
|
|
|
- />
|
|
|
-
|
|
|
- <TextView
|
|
|
- android:id="@+id/text_description"
|
|
|
- android:layout_width="wrap_content"
|
|
|
- android:layout_height="wrap_content"
|
|
|
- android:layout_marginTop="3dp"
|
|
|
- android:layout_marginBottom="25dp"
|
|
|
- android:lineSpacingExtra="6sp"
|
|
|
- tools:text="- 일시 : 2018년 5월 27일(일) 04:00~07:00
|
|
|
-
|
|
|
-* 상황에 따라 점검 시간이 단축/연장될 수 있습니다.
|
|
|
-
|
|
|
-보다 안정적인 서비스로 찾아 뵙겠습니다.
|
|
|
-
|
|
|
-Lifeplus app 운영팀 드림"
|
|
|
- android:textColor="@color/C666666"
|
|
|
- android:textSize="14sp"
|
|
|
- />
|
|
|
- </LinearLayout>
|
|
|
-
|
|
|
- <LinearLayout
|
|
|
- android:layout_width="match_parent"
|
|
|
- android:layout_height="wrap_content"
|
|
|
- android:layout_marginStart="24dp"
|
|
|
- android:layout_marginTop="18dp"
|
|
|
- android:layout_marginBottom="26dp"
|
|
|
- android:orientation="vertical"
|
|
|
- app:layout_constraintStart_toStartOf="parent"
|
|
|
- app:layout_constraintTop_toBottomOf="@+id/linear_layout1">
|
|
|
-
|
|
|
- <LinearLayout
|
|
|
+ <android.support.constraint.ConstraintLayout
|
|
|
android:layout_width="match_parent"
|
|
|
- android:layout_height="wrap_content"
|
|
|
- android:orientation="horizontal"
|
|
|
- >
|
|
|
+ android:layout_height="0dp"
|
|
|
+ app:layout_constraintBottom_toBottomOf="parent"
|
|
|
+ app:layout_constraintTop_toTopOf="parent">
|
|
|
|
|
|
<ImageView
|
|
|
- android:layout_width="2dp"
|
|
|
- android:layout_height="2dp"
|
|
|
- android:layout_gravity="center"
|
|
|
- android:layout_marginEnd="5dp"
|
|
|
- android:src="@drawable/rectangle_c999999"
|
|
|
+ android:id="@+id/image_view"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginTop="60dp"
|
|
|
+ app:layout_constraintEnd_toEndOf="parent"
|
|
|
+ app:layout_constraintStart_toStartOf="parent"
|
|
|
+ app:layout_constraintTop_toTopOf="parent"
|
|
|
+ app:srcCompat="@drawable/icon_research_none"
|
|
|
/>
|
|
|
|
|
|
<TextView
|
|
|
- android:id="@+id/text_noti"
|
|
|
+ android:id="@+id/text_view_title"
|
|
|
android:layout_width="wrap_content"
|
|
|
android:layout_height="wrap_content"
|
|
|
- android:lineSpacingExtra="3sp"
|
|
|
- android:text="@string/menu_check_message2"
|
|
|
- android:textColor="@color/C999999"
|
|
|
- android:textSize="12sp"
|
|
|
+ android:layout_marginTop="23dp"
|
|
|
+ android:gravity="center_horizontal"
|
|
|
+ android:lineSpacingExtra="8sp"
|
|
|
+ android:text="@string/menu_check_title_menu"
|
|
|
+ android:textColor="@color/C000000"
|
|
|
+ android:textSize="19sp"
|
|
|
+ app:layout_constraintEnd_toEndOf="parent"
|
|
|
+ app:layout_constraintStart_toStartOf="parent"
|
|
|
+ app:layout_constraintTop_toBottomOf="@+id/image_view"
|
|
|
+ />
|
|
|
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/text_view_sub_title"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginStart="25dp"
|
|
|
+ android:layout_marginTop="11dp"
|
|
|
+ android:layout_marginEnd="25dp"
|
|
|
+ android:gravity="center_horizontal"
|
|
|
+ android:lineSpacingExtra="6sp"
|
|
|
+ android:text="@string/menu_check_title_menu"
|
|
|
+ android:textColor="@color/C999999"
|
|
|
+ android:textSize="14sp"
|
|
|
+ app:layout_constraintEnd_toEndOf="parent"
|
|
|
+ app:layout_constraintStart_toStartOf="parent"
|
|
|
+ app:layout_constraintTop_toBottomOf="@+id/text_view_title"
|
|
|
+ tools:text="점검 시간동안 해당 메뉴를\n 이용할 수 없는 점 양해부탁드립니다."
|
|
|
/>
|
|
|
- </LinearLayout>
|
|
|
- </LinearLayout>
|
|
|
+
|
|
|
+ <LinearLayout
|
|
|
+ android:id="@+id/linear_layout1"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginStart="25dp"
|
|
|
+ android:layout_marginTop="45dp"
|
|
|
+ android:layout_marginEnd="25dp"
|
|
|
+ android:background="@color/CF8F8F8"
|
|
|
+ android:gravity="center"
|
|
|
+ android:orientation="vertical"
|
|
|
+ android:paddingStart="20dp"
|
|
|
+ android:paddingEnd="20dp"
|
|
|
+ app:layout_constraintEnd_toEndOf="parent"
|
|
|
+ app:layout_constraintStart_toStartOf="parent"
|
|
|
+ app:layout_constraintTop_toBottomOf="@+id/text_view_sub_title">
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginTop="25dp"
|
|
|
+ android:lineSpacingExtra="6sp"
|
|
|
+ android:text="@string/menu_check_guide"
|
|
|
+ android:textColor="@color/C333333"
|
|
|
+ android:textSize="14sp"
|
|
|
+ />
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/text_contents"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginTop="3dp"
|
|
|
+ android:layout_marginBottom="14dp"
|
|
|
+ android:lineSpacingExtra="6sp"
|
|
|
+ android:textColor="@color/C666666"
|
|
|
+ android:textSize="14sp"
|
|
|
+ tools:text="- 일시 : 2018년 5월 27일(일) 04:00~07:00 점검 시간동안 해당 메뉴를\n 이용할 수 없는 점 양해부탁드립니다. 점검 시간동안 해당 메뉴를\n 이용할 수 없는 점 양해부탁드립니다."
|
|
|
+ />
|
|
|
+
|
|
|
+ <View
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="1dp"
|
|
|
+ android:layout_marginStart="30dp"
|
|
|
+ android:layout_marginEnd="30dp"
|
|
|
+ android:background="@color/CC4C4C4"
|
|
|
+ />
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/text_description"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginTop="14dp"
|
|
|
+ android:layout_marginBottom="25dp"
|
|
|
+ android:lineSpacingExtra="6sp"
|
|
|
+ android:text="@string/menu_check_message1"
|
|
|
+ android:textAlignment="center"
|
|
|
+ android:textColor="@color/C999999"
|
|
|
+ android:textSize="14sp"
|
|
|
+ />
|
|
|
+ </LinearLayout>
|
|
|
+
|
|
|
+ <LinearLayout
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginStart="24dp"
|
|
|
+ android:layout_marginTop="18dp"
|
|
|
+ android:layout_marginEnd="24dp"
|
|
|
+ android:layout_marginBottom="40dp"
|
|
|
+ android:orientation="horizontal"
|
|
|
+ app:layout_constraintBottom_toBottomOf="parent"
|
|
|
+ app:layout_constraintStart_toStartOf="parent"
|
|
|
+ app:layout_constraintTop_toBottomOf="@+id/linear_layout1"
|
|
|
+ app:layout_constraintVertical_bias="0">
|
|
|
+
|
|
|
+
|
|
|
+ <ImageView
|
|
|
+ android:layout_width="2dp"
|
|
|
+ android:layout_height="2dp"
|
|
|
+ android:layout_gravity="center"
|
|
|
+ android:layout_marginEnd="5dp"
|
|
|
+ android:src="@drawable/rectangle_c999999"
|
|
|
+ />
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/text_noti"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:lineSpacingExtra="3sp"
|
|
|
+ android:text="@string/menu_check_message2"
|
|
|
+ android:textColor="@color/C999999"
|
|
|
+ android:textSize="12sp"
|
|
|
+
|
|
|
+ />
|
|
|
+ </LinearLayout>
|
|
|
+
|
|
|
+ </android.support.constraint.ConstraintLayout>
|
|
|
+
|
|
|
+ </ScrollView>
|
|
|
|
|
|
<android.support.constraint.ConstraintLayout
|
|
|
android:id="@+id/layout_two_button"
|
|
|
- tools:visibility="visible"
|
|
|
- android:visibility="gone"
|
|
|
android:layout_width="match_parent"
|
|
|
android:layout_height="wrap_content"
|
|
|
android:background="@color/C000000"
|
|
|
- app:layout_constraintBottom_toBottomOf="parent">
|
|
|
+ android:visibility="gone"
|
|
|
+ app:layout_constraintBottom_toBottomOf="parent"
|
|
|
+ tools:visibility="visible">
|
|
|
|
|
|
<TextView
|
|
|
android:id="@+id/main"
|
|
|
@@ -147,13 +181,13 @@ Lifeplus app 운영팀 드림"
|
|
|
android:paddingTop="12dp"
|
|
|
android:paddingEnd="20dp"
|
|
|
android:paddingBottom="12dp"
|
|
|
+ android:text="@string/main"
|
|
|
android:textColor="@color/CFFFFFF"
|
|
|
android:textSize="14sp"
|
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
|
app:layout_constraintEnd_toStartOf="@+id/divider"
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
app:layout_constraintTop_toTopOf="parent"
|
|
|
- android:text="@string/main"
|
|
|
/>
|
|
|
|
|
|
<View
|
|
|
@@ -184,13 +218,14 @@ Lifeplus app 운영팀 드림"
|
|
|
/>
|
|
|
|
|
|
</android.support.constraint.ConstraintLayout>
|
|
|
+
|
|
|
<android.support.constraint.ConstraintLayout
|
|
|
android:id="@+id/layout_one_button"
|
|
|
- tools:visibility="gone"
|
|
|
android:layout_width="match_parent"
|
|
|
android:layout_height="wrap_content"
|
|
|
android:background="@color/C000000"
|
|
|
- app:layout_constraintBottom_toBottomOf="parent">
|
|
|
+ app:layout_constraintBottom_toBottomOf="parent"
|
|
|
+ tools:visibility="gone">
|
|
|
|
|
|
<TextView
|
|
|
android:id="@+id/button_confirm"
|
|
|
@@ -202,15 +237,14 @@ Lifeplus app 운영팀 드림"
|
|
|
android:paddingTop="12dp"
|
|
|
android:paddingEnd="100dp"
|
|
|
android:paddingBottom="12dp"
|
|
|
+ android:text="@string/confirm"
|
|
|
android:textColor="@color/CFFFFFF"
|
|
|
android:textSize="14sp"
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
- android:text="@string/confirm"
|
|
|
/>
|
|
|
|
|
|
</android.support.constraint.ConstraintLayout>
|
|
|
|
|
|
|
|
|
-
|
|
|
</android.support.constraint.ConstraintLayout>
|