콘텐츠 메인 탭 - 채널별 ***

- 채널 표시 간격 22dp로 수정
This commit is contained in:
2025-02-17 09:04:56 +09:00
parent bbd972d860
commit 623ff545b5
7 changed files with 35 additions and 34 deletions

View File

@@ -2,30 +2,31 @@
<androidx.constraintlayout.widget.ConstraintLayout 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="93.3dp"
android:layout_width="60dp"
android:layout_height="wrap_content">
<RelativeLayout
android:id="@+id/rl_profile"
android:layout_width="66.6dp"
android:layout_height="66.6dp"
<FrameLayout
android:id="@+id/fl_profile"
android:layout_width="60dp"
android:layout_height="60dp"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent">
<ImageView
android:id="@+id/iv_bg"
android:id="@+id/iv_profile"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_gravity="center"
android:contentDescription="@null" />
<ImageView
android:id="@+id/iv_profile"
android:layout_width="60dp"
android:layout_height="60dp"
android:layout_centerInParent="true"
android:contentDescription="@null" />
</RelativeLayout>
android:id="@+id/iv_bg"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:contentDescription="@null"
android:src="@drawable/bg_round_corner_33_3_transparent_3bb9f1" />
</FrameLayout>
<TextView
android:id="@+id/tv_nickname"
@@ -40,6 +41,6 @@
android:textSize="11.3sp"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/rl_profile"
app:layout_constraintTop_toBottomOf="@+id/fl_profile"
tools:text="상남자12039" />
</androidx.constraintlayout.widget.ConstraintLayout>