fix(chat): 캐릭터 상세
- 캐릭터 이미지 딤 제거 - 캐릭터 정보: 이미지 아래로 이동
This commit is contained in:
		@@ -46,84 +46,74 @@
 | 
				
			|||||||
                    app:layout_constraintStart_toStartOf="parent"
 | 
					                    app:layout_constraintStart_toStartOf="parent"
 | 
				
			||||||
                    app:layout_constraintTop_toTopOf="parent" />
 | 
					                    app:layout_constraintTop_toTopOf="parent" />
 | 
				
			||||||
 | 
					
 | 
				
			||||||
                <!-- 딤 처리 -->
 | 
					 | 
				
			||||||
                <View
 | 
					 | 
				
			||||||
                    android:id="@+id/view_character_dim"
 | 
					 | 
				
			||||||
                    android:layout_width="0dp"
 | 
					 | 
				
			||||||
                    android:layout_height="0dp"
 | 
					 | 
				
			||||||
                    android:background="@color/color_99000000"
 | 
					 | 
				
			||||||
                    app:layout_constraintBottom_toBottomOf="parent"
 | 
					 | 
				
			||||||
                    app:layout_constraintEnd_toEndOf="parent"
 | 
					 | 
				
			||||||
                    app:layout_constraintStart_toStartOf="parent"
 | 
					 | 
				
			||||||
                    app:layout_constraintTop_toTopOf="parent" />
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
                <!-- 캐릭터 정보 -->
 | 
					 | 
				
			||||||
                <LinearLayout
 | 
					 | 
				
			||||||
                    android:id="@+id/ll_character_info"
 | 
					 | 
				
			||||||
                    android:layout_width="0dp"
 | 
					 | 
				
			||||||
                    android:layout_height="wrap_content"
 | 
					 | 
				
			||||||
                    android:layout_marginHorizontal="24dp"
 | 
					 | 
				
			||||||
                    android:layout_marginBottom="24dp"
 | 
					 | 
				
			||||||
                    android:orientation="vertical"
 | 
					 | 
				
			||||||
                    app:layout_constraintBottom_toBottomOf="parent"
 | 
					 | 
				
			||||||
                    app:layout_constraintEnd_toEndOf="parent"
 | 
					 | 
				
			||||||
                    app:layout_constraintStart_toStartOf="parent">
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
                    <!-- 캐릭터명과 상태 -->
 | 
					 | 
				
			||||||
                    <LinearLayout
 | 
					 | 
				
			||||||
                        android:id="@+id/ll_character_name_status"
 | 
					 | 
				
			||||||
                        android:layout_width="match_parent"
 | 
					 | 
				
			||||||
                        android:layout_height="wrap_content"
 | 
					 | 
				
			||||||
                        android:gravity="center_vertical"
 | 
					 | 
				
			||||||
                        android:orientation="horizontal">
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
                        <TextView
 | 
					 | 
				
			||||||
                            android:id="@+id/tv_character_name"
 | 
					 | 
				
			||||||
                            android:layout_width="wrap_content"
 | 
					 | 
				
			||||||
                            android:layout_height="wrap_content"
 | 
					 | 
				
			||||||
                            android:fontFamily="@font/pretendard_bold"
 | 
					 | 
				
			||||||
                            android:textColor="@color/white"
 | 
					 | 
				
			||||||
                            android:textSize="26sp"
 | 
					 | 
				
			||||||
                            tools:text="캐릭터명" />
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
                        <TextView
 | 
					 | 
				
			||||||
                            android:id="@+id/tv_character_status"
 | 
					 | 
				
			||||||
                            android:layout_width="wrap_content"
 | 
					 | 
				
			||||||
                            android:layout_height="wrap_content"
 | 
					 | 
				
			||||||
                            android:layout_marginStart="8dp"
 | 
					 | 
				
			||||||
                            android:background="@drawable/bg_character_status_clone"
 | 
					 | 
				
			||||||
                            android:fontFamily="@font/pretendard_regular"
 | 
					 | 
				
			||||||
                            android:paddingHorizontal="5dp"
 | 
					 | 
				
			||||||
                            android:paddingVertical="1dp"
 | 
					 | 
				
			||||||
                            android:textColor="@color/white"
 | 
					 | 
				
			||||||
                            android:textSize="12sp"
 | 
					 | 
				
			||||||
                            tools:text="Clone" />
 | 
					 | 
				
			||||||
                    </LinearLayout>
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
                    <!-- 캐릭터 소개 -->
 | 
					 | 
				
			||||||
                    <TextView
 | 
					 | 
				
			||||||
                        android:id="@+id/tv_character_description"
 | 
					 | 
				
			||||||
                        android:layout_width="match_parent"
 | 
					 | 
				
			||||||
                        android:layout_height="wrap_content"
 | 
					 | 
				
			||||||
                        android:layout_marginTop="8dp"
 | 
					 | 
				
			||||||
                        android:fontFamily="@font/pretendard_regular"
 | 
					 | 
				
			||||||
                        android:textColor="@color/color_b0bec5"
 | 
					 | 
				
			||||||
                        android:textSize="18sp"
 | 
					 | 
				
			||||||
                        tools:text="캐릭터 한줄 소개" />
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
                    <!-- 태그 -->
 | 
					 | 
				
			||||||
                    <TextView
 | 
					 | 
				
			||||||
                        android:id="@+id/tv_character_tags"
 | 
					 | 
				
			||||||
                        android:layout_width="match_parent"
 | 
					 | 
				
			||||||
                        android:layout_height="wrap_content"
 | 
					 | 
				
			||||||
                        android:layout_marginTop="8dp"
 | 
					 | 
				
			||||||
                        android:fontFamily="@font/pretendard_regular"
 | 
					 | 
				
			||||||
                        android:textColor="@color/color_3bb9f1"
 | 
					 | 
				
			||||||
                        android:textSize="14sp"
 | 
					 | 
				
			||||||
                        tools:text="#커버곡 #라이브 #연애 #썸 #채팅 #라방" />
 | 
					 | 
				
			||||||
                </LinearLayout>
 | 
					 | 
				
			||||||
            </androidx.constraintlayout.widget.ConstraintLayout>
 | 
					            </androidx.constraintlayout.widget.ConstraintLayout>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					            <!-- 캐릭터 정보 -->
 | 
				
			||||||
 | 
					            <LinearLayout
 | 
				
			||||||
 | 
					                android:id="@+id/ll_character_info"
 | 
				
			||||||
 | 
					                android:layout_width="wrap_content"
 | 
				
			||||||
 | 
					                android:layout_height="wrap_content"
 | 
				
			||||||
 | 
					                android:layout_marginHorizontal="24dp"
 | 
				
			||||||
 | 
					                android:layout_marginBottom="16dp"
 | 
				
			||||||
 | 
					                android:orientation="vertical"
 | 
				
			||||||
 | 
					                app:layout_constraintBottom_toBottomOf="parent"
 | 
				
			||||||
 | 
					                app:layout_constraintEnd_toEndOf="parent"
 | 
				
			||||||
 | 
					                app:layout_constraintStart_toStartOf="parent">
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					                <!-- 캐릭터명과 상태 -->
 | 
				
			||||||
 | 
					                <LinearLayout
 | 
				
			||||||
 | 
					                    android:id="@+id/ll_character_name_status"
 | 
				
			||||||
 | 
					                    android:layout_width="match_parent"
 | 
				
			||||||
 | 
					                    android:layout_height="wrap_content"
 | 
				
			||||||
 | 
					                    android:gravity="center_vertical"
 | 
				
			||||||
 | 
					                    android:orientation="horizontal">
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					                    <TextView
 | 
				
			||||||
 | 
					                        android:id="@+id/tv_character_name"
 | 
				
			||||||
 | 
					                        android:layout_width="wrap_content"
 | 
				
			||||||
 | 
					                        android:layout_height="wrap_content"
 | 
				
			||||||
 | 
					                        android:fontFamily="@font/pretendard_bold"
 | 
				
			||||||
 | 
					                        android:textColor="@color/white"
 | 
				
			||||||
 | 
					                        android:textSize="26sp"
 | 
				
			||||||
 | 
					                        tools:text="캐릭터명" />
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					                    <TextView
 | 
				
			||||||
 | 
					                        android:id="@+id/tv_character_status"
 | 
				
			||||||
 | 
					                        android:layout_width="wrap_content"
 | 
				
			||||||
 | 
					                        android:layout_height="wrap_content"
 | 
				
			||||||
 | 
					                        android:layout_marginStart="8dp"
 | 
				
			||||||
 | 
					                        android:background="@drawable/bg_character_status_clone"
 | 
				
			||||||
 | 
					                        android:fontFamily="@font/pretendard_regular"
 | 
				
			||||||
 | 
					                        android:paddingHorizontal="5dp"
 | 
				
			||||||
 | 
					                        android:paddingVertical="1dp"
 | 
				
			||||||
 | 
					                        android:textColor="@color/white"
 | 
				
			||||||
 | 
					                        android:textSize="12sp"
 | 
				
			||||||
 | 
					                        tools:text="Clone" />
 | 
				
			||||||
 | 
					                </LinearLayout>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					                <!-- 캐릭터 소개 -->
 | 
				
			||||||
 | 
					                <TextView
 | 
				
			||||||
 | 
					                    android:id="@+id/tv_character_description"
 | 
				
			||||||
 | 
					                    android:layout_width="match_parent"
 | 
				
			||||||
 | 
					                    android:layout_height="wrap_content"
 | 
				
			||||||
 | 
					                    android:layout_marginTop="8dp"
 | 
				
			||||||
 | 
					                    android:fontFamily="@font/pretendard_regular"
 | 
				
			||||||
 | 
					                    android:textColor="@color/color_b0bec5"
 | 
				
			||||||
 | 
					                    android:textSize="18sp"
 | 
				
			||||||
 | 
					                    tools:text="캐릭터 한줄 소개" />
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					                <!-- 태그 -->
 | 
				
			||||||
 | 
					                <TextView
 | 
				
			||||||
 | 
					                    android:id="@+id/tv_character_tags"
 | 
				
			||||||
 | 
					                    android:layout_width="match_parent"
 | 
				
			||||||
 | 
					                    android:layout_height="wrap_content"
 | 
				
			||||||
 | 
					                    android:layout_marginTop="8dp"
 | 
				
			||||||
 | 
					                    android:fontFamily="@font/pretendard_regular"
 | 
				
			||||||
 | 
					                    android:textColor="@color/color_3bb9f1"
 | 
				
			||||||
 | 
					                    android:textSize="14sp"
 | 
				
			||||||
 | 
					                    tools:text="#커버곡 #라이브 #연애 #썸 #채팅 #라방" />
 | 
				
			||||||
 | 
					            </LinearLayout>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
            <!-- 세계관 섹션 -->
 | 
					            <!-- 세계관 섹션 -->
 | 
				
			||||||
            <LinearLayout
 | 
					            <LinearLayout
 | 
				
			||||||
                android:id="@+id/ll_worldview_section"
 | 
					                android:id="@+id/ll_worldview_section"
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -29,27 +29,18 @@
 | 
				
			|||||||
        app:layout_constraintStart_toStartOf="parent"
 | 
					        app:layout_constraintStart_toStartOf="parent"
 | 
				
			||||||
        app:layout_constraintTop_toTopOf="parent" />
 | 
					        app:layout_constraintTop_toTopOf="parent" />
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    <!-- 상태바 영역 배경 -->
 | 
					 | 
				
			||||||
    <View
 | 
					 | 
				
			||||||
        android:id="@+id/status_bar_background"
 | 
					 | 
				
			||||||
        android:layout_width="0dp"
 | 
					 | 
				
			||||||
        android:layout_height="24dp"
 | 
					 | 
				
			||||||
        android:background="@android:color/transparent"
 | 
					 | 
				
			||||||
        app:layout_constraintEnd_toEndOf="parent"
 | 
					 | 
				
			||||||
        app:layout_constraintStart_toStartOf="parent"
 | 
					 | 
				
			||||||
        app:layout_constraintTop_toTopOf="parent" />
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    <!-- 헤더 영역 -->
 | 
					    <!-- 헤더 영역 -->
 | 
				
			||||||
    <androidx.constraintlayout.widget.ConstraintLayout
 | 
					    <androidx.constraintlayout.widget.ConstraintLayout
 | 
				
			||||||
        android:id="@+id/header_container"
 | 
					        android:id="@+id/header_container"
 | 
				
			||||||
        android:layout_width="0dp"
 | 
					        android:layout_width="0dp"
 | 
				
			||||||
        android:layout_height="56dp"
 | 
					        android:layout_height="60dp"
 | 
				
			||||||
 | 
					        android:paddingTop="4dp"
 | 
				
			||||||
        android:background="@android:color/transparent"
 | 
					        android:background="@android:color/transparent"
 | 
				
			||||||
        android:paddingHorizontal="16dp"
 | 
					        android:paddingHorizontal="16dp"
 | 
				
			||||||
        android:paddingVertical="8dp"
 | 
					        android:paddingVertical="8dp"
 | 
				
			||||||
        app:layout_constraintEnd_toEndOf="parent"
 | 
					        app:layout_constraintEnd_toEndOf="parent"
 | 
				
			||||||
        app:layout_constraintStart_toStartOf="parent"
 | 
					        app:layout_constraintStart_toStartOf="parent"
 | 
				
			||||||
        app:layout_constraintTop_toBottomOf="@id/status_bar_background">
 | 
					        app:layout_constraintTop_toTopOf="parent">
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        <ImageView
 | 
					        <ImageView
 | 
				
			||||||
            android:id="@+id/iv_back"
 | 
					            android:id="@+id/iv_back"
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -47,6 +47,7 @@
 | 
				
			|||||||
    <color name="color_7fe2e2e2">#7FE2E2E2</color>
 | 
					    <color name="color_7fe2e2e2">#7FE2E2E2</color>
 | 
				
			||||||
    <color name="color_4d9970ff">#4D9970FF</color>
 | 
					    <color name="color_4d9970ff">#4D9970FF</color>
 | 
				
			||||||
    <color name="color_44000000">#44000000</color>
 | 
					    <color name="color_44000000">#44000000</color>
 | 
				
			||||||
 | 
					    <color name="color_4c000000">#4c000000</color>
 | 
				
			||||||
    <color name="color_26909090">#26909090</color>
 | 
					    <color name="color_26909090">#26909090</color>
 | 
				
			||||||
    <color name="color_99525252">#99525252</color>
 | 
					    <color name="color_99525252">#99525252</color>
 | 
				
			||||||
    <color name="color_cc555555">#CC555555</color>
 | 
					    <color name="color_cc555555">#CC555555</color>
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user