74 lines
3.0 KiB
XML
74 lines
3.0 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<RelativeLayout 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="match_parent"
|
|
android:background="@color/black">
|
|
|
|
<include
|
|
android:id="@+id/toolbar"
|
|
layout="@layout/detail_toolbar" />
|
|
|
|
<androidx.core.widget.NestedScrollView
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:layout_below="@+id/toolbar">
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical">
|
|
|
|
<LinearLayout
|
|
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_16_7_222222"
|
|
android:gravity="center"
|
|
android:orientation="vertical"
|
|
android:paddingVertical="16.7dp">
|
|
|
|
<TextView
|
|
android:id="@+id/tv_total_point"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:drawablePadding="6.7dp"
|
|
android:fontFamily="@font/gmarket_sans_bold"
|
|
android:gravity="center"
|
|
android:textColor="@color/color_eeeeee"
|
|
android:textSize="18.3sp"
|
|
app:drawableStartCompat="@drawable/ic_point"
|
|
tools:text="23,000" />
|
|
</LinearLayout>
|
|
|
|
<TextView
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="13.3dp"
|
|
android:fontFamily="@font/gmarket_sans_medium"
|
|
android:gravity="center"
|
|
android:text="※ 획득한 포인트는 72시간이 지나면 자동소멸 됩니다."
|
|
android:textColor="@color/color_eeeeee"
|
|
android:textSize="13.3sp" />
|
|
|
|
<com.google.android.material.tabs.TabLayout
|
|
android:id="@+id/tabs"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="50dp"
|
|
android:layout_marginTop="20dp"
|
|
app:tabIndicatorColor="@color/color_80d8ff"
|
|
app:tabIndicatorHeight="1.3dp"
|
|
app:tabSelectedTextColor="@color/color_eeeeee"
|
|
app:tabTextAppearance="@style/tabText"
|
|
app:tabTextColor="@color/color_777777" />
|
|
|
|
<FrameLayout
|
|
android:id="@+id/container"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent" />
|
|
</LinearLayout>
|
|
</androidx.core.widget.NestedScrollView>
|
|
</RelativeLayout>
|