114 lines
4.7 KiB
XML
114 lines
4.7 KiB
XML
<?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"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:background="@color/black"
|
|
android:orientation="vertical">
|
|
|
|
<include
|
|
android:id="@+id/toolbar"
|
|
layout="@layout/detail_toolbar" />
|
|
|
|
<LinearLayout
|
|
android:id="@+id/ll_adult_content_visible"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginHorizontal="13.3dp"
|
|
android:layout_marginTop="13.3dp"
|
|
android:background="@drawable/bg_round_corner_6_7_222222"
|
|
android:orientation="vertical"
|
|
android:visibility="gone">
|
|
|
|
<RelativeLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:paddingVertical="16.7dp"
|
|
android:paddingStart="16.7dp"
|
|
android:paddingEnd="13.3dp">
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_centerVertical="true"
|
|
android:fontFamily="@font/gmarket_sans_bold"
|
|
android:text="민감한 콘텐츠 보기"
|
|
android:textColor="@color/color_eeeeee"
|
|
android:textSize="14.7sp" />
|
|
|
|
<ImageView
|
|
android:id="@+id/iv_adult_content_visible"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_alignParentEnd="true"
|
|
android:layout_centerVertical="true"
|
|
android:contentDescription="@null"
|
|
android:src="@drawable/btn_toggle_on_big" />
|
|
</RelativeLayout>
|
|
|
|
<LinearLayout
|
|
android:id="@+id/ll_adult_content_preference"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical">
|
|
|
|
<View
|
|
android:layout_width="match_parent"
|
|
android:layout_height="1dp"
|
|
android:layout_marginHorizontal="13.3dp"
|
|
android:background="@color/color_88909090" />
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="horizontal"
|
|
android:paddingHorizontal="16.7dp"
|
|
android:paddingVertical="13.3dp">
|
|
|
|
<TextView
|
|
android:id="@+id/tv_content_all"
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:button="@null"
|
|
android:drawablePadding="13.3dp"
|
|
android:fontFamily="@font/gmarket_sans_medium"
|
|
android:gravity="center_vertical"
|
|
android:text="전체"
|
|
android:textColor="@color/color_eeeeee"
|
|
android:textSize="13.3sp"
|
|
app:drawableStartCompat="@drawable/ic_radio_button_select" />
|
|
|
|
<TextView
|
|
android:id="@+id/tv_content_male"
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginHorizontal="8dp"
|
|
android:layout_weight="1"
|
|
android:button="@null"
|
|
android:drawablePadding="13.3dp"
|
|
android:fontFamily="@font/gmarket_sans_medium"
|
|
android:gravity="center_vertical"
|
|
android:text="남성향"
|
|
android:textColor="@color/color_eeeeee"
|
|
android:textSize="13.3sp"
|
|
app:drawableStartCompat="@drawable/ic_radio_button_select" />
|
|
|
|
<TextView
|
|
android:id="@+id/tv_content_female"
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:button="@null"
|
|
android:drawablePadding="13.3dp"
|
|
android:fontFamily="@font/gmarket_sans_medium"
|
|
android:gravity="center_vertical"
|
|
android:text="여성향"
|
|
android:textColor="@color/color_eeeeee"
|
|
android:textSize="13.3sp"
|
|
app:drawableStartCompat="@drawable/ic_radio_button_select" />
|
|
</LinearLayout>
|
|
</LinearLayout>
|
|
</LinearLayout>
|
|
</LinearLayout>
|