feat(creator): 후원 floating button 위치를 조정한다

This commit is contained in:
2026-06-22 23:22:26 +09:00
parent 4d79cb65cd
commit 9b19be7775
6 changed files with 79 additions and 24 deletions

View File

@@ -382,6 +382,31 @@
</FrameLayout>
</LinearLayout>
<FrameLayout
android:id="@+id/btn_creator_channel_donation_write"
android:layout_width="66dp"
android:layout_height="66dp"
android:layout_marginEnd="@dimen/spacing_14"
android:layout_marginBottom="@dimen/spacing_14"
android:background="@drawable/bg_creator_channel_owner_fab"
android:clickable="true"
android:contentDescription="@string/creator_channel_donation_action"
android:elevation="8dp"
android:focusable="true"
android:padding="@dimen/spacing_14"
android:visibility="gone"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
tools:visibility="visible">
<ImageView
android:layout_width="38dp"
android:layout_height="38dp"
android:contentDescription="@null"
android:src="@drawable/ic_new_donation"
app:tint="@color/white" />
</FrameLayout>
<FrameLayout
android:id="@+id/owner_fab_button"
android:layout_width="66dp"

View File

@@ -137,16 +137,4 @@
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@id/tv_creator_channel_donation_error_message" />
<ImageView
android:id="@+id/btn_creator_channel_donation_write"
android:layout_width="58dp"
android:layout_height="58dp"
android:layout_marginEnd="@dimen/spacing_14"
android:layout_marginBottom="@dimen/spacing_14"
android:background="@drawable/bg_creator_channel_fantalk_write_button"
android:contentDescription="@string/creator_channel_donation_action"
android:padding="@dimen/spacing_16"
android:src="@drawable/ic_new_donation"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent" />
</androidx.constraintlayout.widget.ConstraintLayout>