# 고객센터 UI 개선 및 버전 업데이트 (v1.41.0)
## 변경사항
- 앱 버전을 1.40.0(179)에서 1.41.0(181)으로 업데이트
- 고객센터 화면에 전용 로고 이미지 추가 및 UI 개선
- 플레이스홀더 이미지를 고객센터 전용 로고로 교체
- 텍스트 마진 조정 (13.3dp → 16dp)
- 마이페이지 화면 UI 개선
- 본인인증 버튼 텍스트 간소화 ("본인인증 완료" → "인증완료")
- 레이아웃 구조 개선 (패딩/마진 조정)
- RecyclerView 스크롤 경험 개선 (clipToPadding 속성 추가)
This commit is contained in:
@@ -35,8 +35,8 @@ android {
|
||||
applicationId "kr.co.vividnext.sodalive"
|
||||
minSdk 23
|
||||
targetSdk 34
|
||||
versionCode 179
|
||||
versionName "1.40.0"
|
||||
versionCode 181
|
||||
versionName "1.41.0"
|
||||
}
|
||||
|
||||
buildTypes {
|
||||
|
||||
@@ -349,7 +349,7 @@ class MyPageFragment : BaseFragment<FragmentMyBinding>(FragmentMyBinding::inflat
|
||||
FunctionButtonHelper.setupFunctionButton(
|
||||
buttonView = binding.btnIdentityVerification.root,
|
||||
iconRes = R.drawable.ic_my_auth,
|
||||
title = "본인인증 완료"
|
||||
title = "인증완료"
|
||||
)
|
||||
|
||||
FunctionButtonHelper.setupFunctionButton(
|
||||
|
||||
BIN
app/src/main/res/drawable-xxhdpi/ic_logo_service_center.png
Normal file
BIN
app/src/main/res/drawable-xxhdpi/ic_logo_service_center.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 19 KiB |
@@ -24,12 +24,12 @@
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:contentDescription="@null"
|
||||
android:src="@drawable/ic_place_holder" />
|
||||
android:src="@drawable/ic_logo_service_center" />
|
||||
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="13.3dp"
|
||||
android:layout_marginTop="16dp"
|
||||
android:fontFamily="@font/gmarket_sans_bold"
|
||||
android:text="보이스온 고객센터"
|
||||
android:textColor="@color/color_eeeeee"
|
||||
|
||||
@@ -89,13 +89,13 @@
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:orientation="vertical"
|
||||
android:paddingHorizontal="24dp"
|
||||
android:paddingVertical="32dp">
|
||||
|
||||
<LinearLayout
|
||||
android:id="@+id/ll_profile_login_container"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginHorizontal="24dp"
|
||||
android:layout_marginBottom="32dp"
|
||||
android:background="@drawable/bg_round_corner_16_7_222222"
|
||||
android:gravity="center"
|
||||
@@ -117,6 +117,7 @@
|
||||
android:id="@+id/rl_profile_container"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginHorizontal="24dp"
|
||||
android:layout_marginBottom="32dp"
|
||||
android:gravity="center_vertical"
|
||||
android:orientation="horizontal"
|
||||
@@ -167,6 +168,7 @@
|
||||
android:id="@+id/ll_can_point_container"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginHorizontal="24dp"
|
||||
android:layout_marginBottom="32dp"
|
||||
android:background="@drawable/bg_round_corner_16_263238"
|
||||
android:orientation="vertical">
|
||||
@@ -254,6 +256,7 @@
|
||||
android:id="@+id/ll_function_button_grid"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginHorizontal="24dp"
|
||||
android:layout_marginBottom="32dp"
|
||||
android:orientation="vertical"
|
||||
android:visibility="gone">
|
||||
@@ -345,6 +348,7 @@
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_gravity="center"
|
||||
android:layout_marginHorizontal="24dp"
|
||||
android:contentDescription="@null"
|
||||
android:src="@drawable/img_introduce_voiceon" />
|
||||
|
||||
@@ -361,6 +365,7 @@
|
||||
<LinearLayout
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginHorizontal="24dp"
|
||||
android:layout_marginBottom="14dp"
|
||||
android:orientation="horizontal">
|
||||
|
||||
@@ -385,7 +390,9 @@
|
||||
<androidx.recyclerview.widget.RecyclerView
|
||||
android:id="@+id/rv_recent_content"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content" />
|
||||
android:layout_height="wrap_content"
|
||||
android:clipToPadding="false"
|
||||
android:paddingHorizontal="24dp" />
|
||||
</LinearLayout>
|
||||
</LinearLayout>
|
||||
</androidx.core.widget.NestedScrollView>
|
||||
|
||||
Reference in New Issue
Block a user