큐레이션

- 아이템 2개에서 3개로 변경
This commit is contained in:
2024-02-13 14:08:41 +09:00
parent e51af38b75
commit a88f8c3316
8 changed files with 92 additions and 28 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 552 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 543 B

View File

@@ -0,0 +1,8 @@
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
<solid android:color="@color/color_b3333333" />
<corners android:radius="10dp" />
<stroke
android:width="1dp"
android:color="@color/color_b3333333" />
</shape>

View File

@@ -13,6 +13,68 @@
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginStart="2.7dp"
android:layout_marginBottom="2.7dp"
android:background="@drawable/bg_round_corner_10_b3333333"
android:orientation="horizontal"
android:padding="3dp"
android:gravity="center"
app:layout_constraintBottom_toBottomOf="@+id/iv_audio_content_cover_image"
app:layout_constraintStart_toStartOf="@+id/iv_audio_content_cover_image">
<ImageView
android:id="@+id/iv_can"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:contentDescription="@null"
android:src="@drawable/ic_card_can_gray" />
<TextView
android:id="@+id/tv_can"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginStart="2dp"
android:fontFamily="@font/gmarket_sans_medium"
android:textColor="@color/white"
android:textSize="8.3sp"
tools:ignore="SmallSp"
tools:text="300" />
</LinearLayout>
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginEnd="2.7dp"
android:layout_marginBottom="2.7dp"
android:background="@drawable/bg_round_corner_10_b3333333"
android:orientation="horizontal"
android:gravity="center"
android:padding="3dp"
app:layout_constraintBottom_toBottomOf="@+id/iv_audio_content_cover_image"
app:layout_constraintEnd_toEndOf="@+id/iv_audio_content_cover_image">
<ImageView
android:id="@+id/iv_time"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:contentDescription="@null"
android:src="@drawable/ic_card_time_small_gray" />
<TextView
android:id="@+id/tv_time"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginStart="2dp"
android:fontFamily="@font/gmarket_sans_medium"
android:textColor="@color/white"
android:textSize="8.3sp"
tools:ignore="SmallSp"
tools:text="00:00:30" />
</LinearLayout>
<TextView
android:id="@+id/tv_audio_content_title"
android:layout_width="0dp"

View File

@@ -37,6 +37,7 @@
<color name="color_ccc25264">#CCC25264</color>
<color name="color_b3909090">#B3909090</color>
<color name="color_b3333333">#B3333333</color>
<color name="color_88909090">#88909090</color>
<color name="color_339970ff">#339970FF</color>
<color name="color_7fe2e2e2">#7FE2E2E2</color>