콘텐츠 전체보기

- 카테고리 추가
This commit is contained in:
2024-02-07 07:28:14 +09:00
parent eafb922ae9
commit 51b57a0b1d
10 changed files with 262 additions and 6 deletions

View File

@@ -9,6 +9,15 @@
android:id="@+id/toolbar"
layout="@layout/detail_toolbar" />
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/rv_category"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="13.3dp"
android:clipToPadding="false"
android:padding="13.3dp"
android:visibility="gone" />
<TextView
android:id="@+id/tv_new_content"
android:layout_width="match_parent"

View File

@@ -0,0 +1,17 @@
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<TextView
android:id="@+id/tv_category"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/bg_round_corner_16_7_transparent_777777"
android:paddingHorizontal="13.3dp"
android:paddingVertical="9dp"
android:textColor="@color/color_777777"
android:textSize="14.7sp"
tools:text="남공여수" />
</FrameLayout>