|
@@ -2,7 +2,7 @@
|
|
|
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
android:layout_width="match_parent"
|
|
|
- android:layout_height="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
android:background="#fff"
|
|
|
android:focusable="true"
|
|
|
android:focusableInTouchMode="true"
|
|
@@ -123,33 +123,37 @@
|
|
|
android:textSize="@dimen/convert_36px"
|
|
|
app:layout_constraintTop_toBottomOf="@+id/tv_choose_sex" />
|
|
|
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
<TextView
|
|
|
+ android:layout_marginLeft="@dimen/convert_50px"
|
|
|
android:id="@+id/tv_skip_for_now"
|
|
|
android:layout_width="0dp"
|
|
|
android:layout_height="wrap_content"
|
|
|
android:gravity="center"
|
|
|
- android:paddingTop="@dimen/convert_40px"
|
|
|
- android:paddingBottom="@dimen/convert_50px"
|
|
|
+ android:paddingTop="@dimen/convert_20px"
|
|
|
+ android:paddingBottom="@dimen/convert_20px"
|
|
|
android:text="@string/skip_for_now"
|
|
|
android:textColor="@color/skin_for_now"
|
|
|
android:textSize="@dimen/convert_30px"
|
|
|
- app:layout_constraintEnd_toStartOf="@+id/tv_destroy_account"
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
app:layout_constraintTop_toBottomOf="@+id/tv_save" />
|
|
|
|
|
|
<TextView
|
|
|
+ android:layout_marginRight="@dimen/convert_50px"
|
|
|
android:id="@+id/tv_destroy_account"
|
|
|
android:layout_width="0dp"
|
|
|
android:layout_height="wrap_content"
|
|
|
android:gravity="center"
|
|
|
- android:paddingTop="@dimen/convert_40px"
|
|
|
- android:paddingBottom="@dimen/convert_50px"
|
|
|
+ android:paddingTop="@dimen/convert_20px"
|
|
|
+ android:paddingBottom="@dimen/convert_20px"
|
|
|
android:text="@string/cancellation_of_account"
|
|
|
android:textColor="#E60012"
|
|
|
android:textSize="@dimen/convert_30px"
|
|
|
android:visibility="gone"
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
- app:layout_constraintStart_toEndOf="@id/tv_skip_for_now"
|
|
|
app:layout_constraintTop_toBottomOf="@+id/tv_save" />
|
|
|
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|