|
|
@@ -12,6 +12,14 @@
|
|
|
<variable
|
|
|
name="privacyAgreementClick"
|
|
|
type="android.view.View.OnClickListener" />
|
|
|
+
|
|
|
+ <variable
|
|
|
+ name="informationListClick"
|
|
|
+ type="android.view.View.OnClickListener" />
|
|
|
+
|
|
|
+ <variable
|
|
|
+ name="sdkSharingListClick"
|
|
|
+ type="android.view.View.OnClickListener" />
|
|
|
</data>
|
|
|
|
|
|
<androidx.constraintlayout.widget.ConstraintLayout
|
|
|
@@ -71,6 +79,7 @@
|
|
|
android:layout_width="wrap_content"
|
|
|
android:layout_height="wrap_content"
|
|
|
android:layout_marginStart="@dimen/app_common_page_horizontal_padding"
|
|
|
+ android:paddingVertical="6dp"
|
|
|
android:text="@string/version_title"
|
|
|
android:textColor="@color/common_txt_color"
|
|
|
android:textSize="14sp"
|
|
|
@@ -89,66 +98,41 @@
|
|
|
app:layout_constraintTop_toTopOf="@+id/tv_version_title"
|
|
|
tools:text="1.0.0" />
|
|
|
|
|
|
-
|
|
|
- <TextView
|
|
|
- android:id="@+id/tv_user_agreement"
|
|
|
- android:layout_width="wrap_content"
|
|
|
- android:layout_height="wrap_content"
|
|
|
- android:layout_marginStart="@dimen/app_common_page_horizontal_padding"
|
|
|
- android:layout_marginTop="16dp"
|
|
|
- android:text="@string/about_user_agreement"
|
|
|
- android:textColor="@color/common_txt_color"
|
|
|
- android:textSize="14sp"
|
|
|
- app:layout_constraintStart_toStartOf="parent"
|
|
|
- app:layout_constraintTop_toBottomOf="@+id/tv_version_title" />
|
|
|
-
|
|
|
- <ImageView
|
|
|
- android:layout_width="0dp"
|
|
|
- android:layout_height="0dp"
|
|
|
- android:layout_marginEnd="@dimen/app_common_page_horizontal_padding"
|
|
|
- android:src="@drawable/icon_setting_arrow"
|
|
|
- app:layout_constraintBottom_toBottomOf="@+id/tv_user_agreement"
|
|
|
- app:layout_constraintDimensionRatio="1:1"
|
|
|
- app:layout_constraintEnd_toEndOf="parent"
|
|
|
- app:layout_constraintTop_toTopOf="@+id/tv_user_agreement"
|
|
|
- app:layout_constraintWidth_percent="0.0555555555555556" />
|
|
|
-
|
|
|
- <View
|
|
|
+ <LinearLayout
|
|
|
android:layout_width="match_parent"
|
|
|
- android:layout_height="0dp"
|
|
|
- android:onClick="@{userAgreementClick}"
|
|
|
- app:layout_constraintBottom_toBottomOf="@+id/tv_user_agreement"
|
|
|
- app:layout_constraintTop_toTopOf="@+id/tv_user_agreement" />
|
|
|
-
|
|
|
- <TextView
|
|
|
- android:id="@+id/tv_privacy_agreement"
|
|
|
- android:layout_width="wrap_content"
|
|
|
android:layout_height="wrap_content"
|
|
|
- android:layout_marginStart="@dimen/app_common_page_horizontal_padding"
|
|
|
- android:layout_marginTop="16dp"
|
|
|
- android:text="@string/about_privacy_agreement"
|
|
|
- android:textColor="@color/common_txt_color"
|
|
|
- android:textSize="14sp"
|
|
|
- app:layout_constraintStart_toStartOf="parent"
|
|
|
- app:layout_constraintTop_toBottomOf="@+id/tv_user_agreement" />
|
|
|
-
|
|
|
- <ImageView
|
|
|
- android:layout_width="0dp"
|
|
|
- android:layout_height="0dp"
|
|
|
- android:layout_marginEnd="@dimen/app_common_page_horizontal_padding"
|
|
|
- android:src="@drawable/icon_setting_arrow"
|
|
|
- app:layout_constraintBottom_toBottomOf="@+id/tv_privacy_agreement"
|
|
|
- app:layout_constraintDimensionRatio="1:1"
|
|
|
- app:layout_constraintEnd_toEndOf="parent"
|
|
|
- app:layout_constraintTop_toTopOf="@+id/tv_privacy_agreement"
|
|
|
- app:layout_constraintWidth_percent="0.0555555555555556" />
|
|
|
-
|
|
|
- <View
|
|
|
- android:layout_width="match_parent"
|
|
|
- android:layout_height="0dp"
|
|
|
- android:onClick="@{privacyAgreementClick}"
|
|
|
- app:layout_constraintBottom_toBottomOf="@+id/tv_privacy_agreement"
|
|
|
- app:layout_constraintTop_toTopOf="@+id/tv_privacy_agreement" />
|
|
|
+ android:orientation="vertical"
|
|
|
+ app:layout_constraintTop_toBottomOf="@+id/tv_version_title">
|
|
|
+
|
|
|
+ <include
|
|
|
+ itemName="@{@string/about_user_agreement}"
|
|
|
+ layout="@layout/layout_item_about"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:onClick="@{userAgreementClick}" />
|
|
|
+
|
|
|
+ <include
|
|
|
+ itemName="@{@string/about_privacy_agreement}"
|
|
|
+ layout="@layout/layout_item_about"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:onClick="@{privacyAgreementClick}" />
|
|
|
+
|
|
|
+ <include
|
|
|
+ itemName="@{@string/about_personal_information_list}"
|
|
|
+ layout="@layout/layout_item_about"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:onClick="@{informationListClick}" />
|
|
|
+
|
|
|
+ <include
|
|
|
+ itemName="@{@string/about_sdk_sharing_list}"
|
|
|
+ layout="@layout/layout_item_about"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:onClick="@{sdkSharingListClick}" />
|
|
|
+
|
|
|
+ </LinearLayout>
|
|
|
|
|
|
|
|
|
<View
|