|
|
@@ -3,58 +3,66 @@
|
|
|
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_marginStart="25dp"
|
|
|
- android:layout_marginEnd="25dp"
|
|
|
android:layout_width="match_parent"
|
|
|
- android:layout_height="wrap_content">
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginStart="25dp"
|
|
|
+ android:layout_marginEnd="25dp">
|
|
|
|
|
|
<kr.co.zumo.app.lifeplus.view.custom.CustomSpinner
|
|
|
android:id="@+id/spinner_phone_number"
|
|
|
android:layout_width="100dp"
|
|
|
android:layout_height="44dp"
|
|
|
- android:layout_marginStart="5dp"
|
|
|
android:background="@drawable/spinner_drop_down"
|
|
|
android:entries="@array/phone_numbers"
|
|
|
android:focusable="true"
|
|
|
android:lineSpacingExtra="5sp"
|
|
|
android:textColor="@color/C000000"
|
|
|
+ app:layout_constraintTop_toTopOf="parent"
|
|
|
+ app:layout_constraintStart_toStartOf="parent"
|
|
|
+ app:layout_constraintEnd_toStartOf="@+id/edit_text_phone_number"
|
|
|
android:textSize="14sp"/>
|
|
|
|
|
|
<View
|
|
|
+ android:id="@+id/spinner_divider"
|
|
|
android:layout_width="100dp"
|
|
|
android:layout_height="1dp"
|
|
|
- app:layout_constraintTop_toBottomOf="@+id/spinner_phone_number"
|
|
|
+ android:background="@color/CE5E5E5"
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
- android:background="@color/CE5E5E5"/>
|
|
|
- <EditText
|
|
|
+ app:layout_constraintTop_toBottomOf="@+id/spinner_phone_number"/>
|
|
|
+
|
|
|
+ <kr.co.zumo.app.lifeplus.view.custom.ClearEditText
|
|
|
android:id="@+id/edit_text_phone_number"
|
|
|
android:layout_width="0dp"
|
|
|
- app:layout_constraintDimensionRatio="V, 199:45"
|
|
|
android:layout_height="80dp"
|
|
|
+ android:layout_marginStart="12dp"
|
|
|
android:layout_marginTop="2dp"
|
|
|
android:background="@drawable/button_underline_background"
|
|
|
android:hint="@string/event_participation_phone_hint"
|
|
|
android:lineSpacingExtra="6sp"
|
|
|
- android:maxLength="5"
|
|
|
+ android:maxLength="8"
|
|
|
android:maxLines="1"
|
|
|
- android:layout_marginStart="12dp"
|
|
|
android:paddingStart="5dp"
|
|
|
android:paddingBottom="35dp"
|
|
|
android:textColorHint="@color/CC5C5C5"
|
|
|
android:textSize="14sp"
|
|
|
+ app:layout_constraintEnd_toEndOf="parent"
|
|
|
app:layout_constraintStart_toEndOf="@+id/spinner_phone_number"/>
|
|
|
+
|
|
|
<TextView
|
|
|
android:id="@+id/text_view_phone_number_validation"
|
|
|
android:layout_width="wrap_content"
|
|
|
android:layout_height="wrap_content"
|
|
|
android:layout_marginTop="54dp"
|
|
|
android:layout_marginBottom="8dp"
|
|
|
- android:lineSpacingExtra="3.5sp"
|
|
|
+ android:inputType="number"
|
|
|
+ android:lineSpacingExtra="4sp"
|
|
|
android:text="@string/event_participation_phone_validation"
|
|
|
android:textColor="@color/C666666"
|
|
|
android:textSize="11sp"
|
|
|
+ android:visibility="gone"
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
app:layout_constraintTop_toTopOf="@+id/edit_text_phone_number"
|
|
|
app:layout_constraintVertical_chainStyle="spread_inside"
|
|
|
+ tools:visibility="visible"
|
|
|
/>
|
|
|
</android.support.constraint.ConstraintLayout>
|