41 lines
1.4 KiB
XML
41 lines
1.4 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical">
|
|
|
|
<ImageView
|
|
android:id="@+id/iv_event_popup"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:contentDescription="@null"
|
|
android:scaleType="centerCrop" />
|
|
|
|
<RelativeLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:paddingHorizontal="26.7dp"
|
|
android:paddingVertical="13.3dp">
|
|
|
|
<TextView
|
|
android:id="@+id/tv_close_always"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:fontFamily="@font/gmarket_sans_medium"
|
|
android:text="다시보지 않기"
|
|
android:textColor="@color/color_eeeeee"
|
|
android:textSize="14.7sp" />
|
|
|
|
<TextView
|
|
android:id="@+id/tv_close"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_alignParentEnd="true"
|
|
android:fontFamily="@font/gmarket_sans_medium"
|
|
android:text="닫기"
|
|
android:textColor="@color/color_eeeeee"
|
|
android:textSize="14.7sp" />
|
|
</RelativeLayout>
|
|
|
|
</LinearLayout>
|