Skip to content

Commit

Permalink
[FEAT/#66] 개인정보 처리방침 팝업창 xml 작성
Browse files Browse the repository at this point in the history
  • Loading branch information
seongh06 committed Sep 24, 2024
1 parent 4ec0c33 commit 64a2115
Showing 1 changed file with 54 additions and 0 deletions.
54 changes: 54 additions & 0 deletions app/src/main/res/layout/dialog_signup_tos_details_agree_2.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
<?xml version="1.0" encoding="utf-8"?>
<layout xmlns:android="http://schemas.android.com/apk/res/android">

<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#000000CC"
android:padding="16dp">

<!-- 중앙에 위치할 사각형 레이아웃 -->
<RelativeLayout
android:layout_width="350dp"
android:layout_height="640dp"
android:layout_centerInParent="true"
android:background="@drawable/shape_rect_12_white_fill">

<TextView
android:id="@+id/tv_dialog_title"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="개인정보 처리방침 ( 필수 )"
style="@style/TextAppearance.LCK.Bold.List_14sp"
android:textColor="@color/gray"
android:layout_centerHorizontal="true"
android:layout_marginTop="37dp"/>

<TextView
android:id="@+id/tv_dialog_text"
android:layout_width="321dp"
android:layout_height="440dp"
android:text=""
style="@style/TextAppearance.LCK.Light.Detail_10sp"
android:textColor="@color/black"
android:layout_centerHorizontal="true"
android:layout_marginTop="80dp"/>

<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true">

<android.widget.Button
android:id="@+id/btn_confirm"
android:layout_width="match_parent"
android:layout_height="50dp"
android:layout_alignParentEnd="true"
android:background="@drawable/shape_dialog_button_confirm_background"
android:text="확인"
style="@style/TextAppearance.LCK.Light.Body_14sp"
android:textColor="@color/gray"/>
</RelativeLayout>
</RelativeLayout>
</RelativeLayout>
</layout>

0 comments on commit 64a2115

Please sign in to comment.