| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687 |
- <?xml version="1.0" encoding="utf-8"?>
- <LinearLayout
- 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:layout_marginBottom="1dp"
- android:orientation="vertical"
- >
- <android.support.constraint.ConstraintLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content">
- <ImageView
- android:id="@+id/image_view_setting_menu_icon"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginTop="23dp"
- android:layout_marginBottom="26dp"
- app:layout_constraintBottom_toBottomOf="parent"
- app:layout_constraintStart_toStartOf="parent"
- app:layout_constraintTop_toTopOf="parent"
- app:srcCompat="@drawable/icon_info"/>
- <TextView
- android:id="@+id/text_view_setting_menu_text"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginStart="8dp"
- android:layout_marginTop="23dp"
- android:layout_marginBottom="27dp"
- android:text="@string/setting_menu4"
- app:layout_constraintBottom_toBottomOf="parent"
- app:layout_constraintStart_toEndOf="@+id/image_view_setting_menu_icon"
- app:layout_constraintTop_toTopOf="parent"/>
- <ImageView
- android:id="@+id/image_view_setting_menu_accordion"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginTop="11dp"
- android:layout_marginBottom="11dp"
- android:paddingLeft="20dp"
- android:paddingTop="20dp"
- android:paddingBottom="20dp"
- app:layout_constraintBottom_toBottomOf="parent"
- app:layout_constraintEnd_toEndOf="parent"
- app:layout_constraintTop_toTopOf="parent"
- app:srcCompat="@drawable/icon_arcordion_open_arrow"/>
- </android.support.constraint.ConstraintLayout>
- <RelativeLayout
- android:id="@+id/layout_agree_information"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:orientation="vertical"
- android:visibility="gone"
- >
- <TextView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_alignParentStart="true"
- android:layout_alignParentTop="true"
- android:lineSpacingExtra="4sp"
- android:text="이용 약관"
- android:textColor="@color/C999999"
- android:textSize="12sp"/>
- <TextView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_alignParentStart="true"
- android:layout_alignParentTop="true"
- android:layout_marginTop="30dp"
- android:layout_marginBottom="28dp"
- android:lineSpacingExtra="4sp"
- android:text="이용안내"
- android:textColor="@color/C999999"
- android:textSize="12sp"/>
- </RelativeLayout>
- </LinearLayout>
|