fix(content): 페이월 가격 배지를 보정한다

This commit is contained in:
2026-07-12 08:46:59 +09:00
parent a00745dd38
commit bc5fd46671
2 changed files with 24 additions and 13 deletions

View File

@@ -158,9 +158,6 @@ class CreatorChannelCommunityDetailActivity : BaseActivity<ActivityCreatorChanne
layoutCreatorChannelCommunityDetailPaywall.setOnClickListener {
showPurchaseDialog(post)
}
tvCreatorChannelCommunityDetailPaywallPrice.setOnClickListener {
showPurchaseDialog(post)
}
if (post.imageUrl != null) {
Glide.with(ivCreatorChannelCommunityDetailImage)
.load(post.imageUrl)

View File

@@ -175,20 +175,34 @@
android:contentDescription="@null"
android:src="@drawable/ic_new_community_lock" />
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="@dimen/spacing_4"
android:background="@drawable/bg_creator_channel_community_price"
android:gravity="center"
android:orientation="horizontal"
android:paddingHorizontal="12dp"
android:paddingVertical="6dp">
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:contentDescription="@null"
android:src="@drawable/ic_bar_cash" />
<TextView
android:id="@+id/tv_creator_channel_community_detail_paywall_price"
style="@style/Typography.Body3"
android:layout_width="70dp"
android:layout_height="36dp"
android:layout_marginTop="@dimen/spacing_4"
android:background="@drawable/bg_creator_channel_community_price"
android:drawableStart="@drawable/ic_bar_cash"
android:drawablePadding="@dimen/spacing_6"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginStart="@dimen/spacing_6"
android:gravity="center"
android:includeFontPadding="false"
android:textColor="@color/black"
tools:text="30" />
</LinearLayout>
</LinearLayout>
</FrameLayout>
<TextView