|
|
@@ -1,57 +1,80 @@
|
|
|
<?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="wrap_content"
|
|
|
- android:focusable="true"
|
|
|
- android:focusableInTouchMode="true"
|
|
|
- android:paddingStart="25dp"
|
|
|
- android:paddingTop="19dp"
|
|
|
- android:paddingEnd="25dp"
|
|
|
- >
|
|
|
-
|
|
|
- <TextView
|
|
|
- android:id="@+id/text_view_question"
|
|
|
- android:layout_width="wrap_content"
|
|
|
+<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="wrap_content"
|
|
|
- android:lineSpacingExtra="3.5sp"
|
|
|
- android:textColor="@color/C999999"
|
|
|
- android:textSize="12sp"
|
|
|
- app:layout_constraintStart_toStartOf="parent"
|
|
|
- tools:text="@string/event_question_answer_title"/>
|
|
|
+ android:focusable="true"
|
|
|
+ android:focusableInTouchMode="true"
|
|
|
+ android:paddingStart="25dp"
|
|
|
+ android:paddingTop="19dp"
|
|
|
+ android:paddingEnd="25dp">
|
|
|
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/text_view_question"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:lineSpacingExtra="3.5sp"
|
|
|
+ android:textColor="@color/C999999"
|
|
|
+ android:textSize="12sp"
|
|
|
+ app:layout_constraintStart_toStartOf="parent"
|
|
|
+ tools:text="@string/event_question_answer_title" />
|
|
|
|
|
|
- <kr.co.zumo.app.lifeplus.view.custom.ClearEditText
|
|
|
- android:id="@+id/edit_text_input"
|
|
|
- android:layout_width="match_parent"
|
|
|
- android:layout_height="66dp"
|
|
|
- android:layout_marginTop="2dp"
|
|
|
- android:background="@drawable/button_underline_background"
|
|
|
- android:inputType="text"
|
|
|
- android:lineSpacingExtra="6sp"
|
|
|
- android:maxLines="1"
|
|
|
- android:paddingStart="5dp"
|
|
|
- android:paddingBottom="38dp"
|
|
|
- android:textColorHint="@color/CC5C5C5"
|
|
|
- android:textSize="14sp"
|
|
|
- app:layout_constraintTop_toBottomOf="@+id/text_view_question"
|
|
|
- android:hint="@string/event_question_answer_hint"/>
|
|
|
|
|
|
- <TextView
|
|
|
- android:id="@+id/text_validation"
|
|
|
- android:layout_width="wrap_content"
|
|
|
- android:layout_height="wrap_content"
|
|
|
- android:layout_marginTop="37dp"
|
|
|
- android:lineSpacingExtra="4sp"
|
|
|
- android:text="@string/event_question_answer_validation"
|
|
|
- android:textColor="@color/CF13F15"
|
|
|
- android:textSize="11sp"
|
|
|
- android:visibility="gone"
|
|
|
- app:layout_constraintStart_toStartOf="@+id/edit_text_input"
|
|
|
- app:layout_constraintTop_toBottomOf="@+id/text_view_question"
|
|
|
- app:layout_constraintVertical_chainStyle="spread_inside"
|
|
|
- tools:visibility="visible"
|
|
|
- />
|
|
|
+ <kr.co.zumo.app.lifeplus.view.custom.ClearEditText
|
|
|
+ android:id="@+id/edit_text_input"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="66dp"
|
|
|
+ android:layout_marginTop="2dp"
|
|
|
+ android:background="@drawable/button_underline_background"
|
|
|
+ android:hint="@string/event_question_answer_hint"
|
|
|
+ android:inputType="text"
|
|
|
+ android:lineSpacingExtra="6sp"
|
|
|
+ android:maxLength="40"
|
|
|
+ android:maxLines="1"
|
|
|
+ android:paddingStart="5dp"
|
|
|
+ android:paddingBottom="38dp"
|
|
|
+ android:textColorHint="@color/CC5C5C5"
|
|
|
+ android:textSize="14sp"
|
|
|
+ app:layout_constraintTop_toBottomOf="@+id/text_view_question" />
|
|
|
+
|
|
|
+ <LinearLayout
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:gravity="right"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginTop="37dp"
|
|
|
+ android:orientation="horizontal"
|
|
|
+ app:layout_constraintEnd_toEndOf="@+id/edit_text_input"
|
|
|
+ app:layout_constraintTop_toBottomOf="@+id/text_view_question">
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/text_count"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:textColor="#f12815"
|
|
|
+ android:textSize="10.5sp"
|
|
|
+ android:text="0" />
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:textColor="#999999"
|
|
|
+ android:textSize="10.5sp"
|
|
|
+ android:text=" / 40" />
|
|
|
+ </LinearLayout>
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/text_validation"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginTop="37dp"
|
|
|
+ android:lineSpacingExtra="4sp"
|
|
|
+ android:text="@string/event_question_answer_validation"
|
|
|
+ android:textColor="@color/CF13F15"
|
|
|
+ android:textSize="11sp"
|
|
|
+ android:visibility="gone"
|
|
|
+ app:layout_constraintStart_toStartOf="@+id/edit_text_input"
|
|
|
+ app:layout_constraintTop_toBottomOf="@+id/text_view_question"
|
|
|
+ app:layout_constraintVertical_chainStyle="spread_inside"
|
|
|
+ tools:visibility="visible" />
|
|
|
</android.support.constraint.ConstraintLayout>
|