Skip to content

Commit

Permalink
fix: 제보하기 텍스트 디자인 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
ZZANZU committed May 10, 2023
1 parent dc95f59 commit dc1ff83
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 4 deletions.
8 changes: 4 additions & 4 deletions app/src/main/res/layout/item_restaurant.xml
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@
android:layout_width="wrap_content"
android:layout_height="40dp"
android:layout_gravity="center"
android:text="내가 먼저 메뉴 제보하기"
android:textSize="14dp"
android:text="@string/restaurant_info_menu_report_button"
android:textSize="@dimen/menu_report_button_text_size"
android:textColor="@color/white"
android:fontFamily="@font/pretendard_semibold"
android:background="@drawable/color_button_background"
Expand All @@ -61,9 +61,9 @@
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="메뉴는 매일 11시에 업데이트됩니다."
android:text="@string/restaurant_info_menu_report_description"
android:layout_gravity="center"
android:textSize="10dp"
android:textSize="@dimen/menu_report_description_text_size"
android:textColor="@color/black"
android:fontFamily="@font/pretendard_regular"
android:layout_marginBottom="6dp"
Expand Down
2 changes: 2 additions & 0 deletions app/src/main/res/values-hdpi/dimens.xml
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,8 @@
<dimen name="menu_provider_text_size">10dp</dimen>
<dimen name="menu_title_text_size">16dp</dimen>
<dimen name="menu_content_text_size">14dp</dimen>
<dimen name="menu_report_button_text_size">14dp</dimen>
<dimen name="menu_report_description_text_size">12dp</dimen>

<!--위치 권한 동의 다이얼로그 관련-->
<dimen name="location_permission_description_text_size">14dp</dimen>
Expand Down
2 changes: 2 additions & 0 deletions app/src/main/res/values/dimens.xml
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,8 @@
<dimen name="menu_provider_text_size">10dp</dimen>
<dimen name="menu_title_text_size">16dp</dimen>
<dimen name="menu_content_text_size">14dp</dimen>
<dimen name="menu_report_button_text_size">14dp</dimen>
<dimen name="menu_report_description_text_size">12dp</dimen>

<!--위치 권한 동의 다이얼로그 관련-->
<dimen name="location_permission_description_text_size">12dp</dimen>
Expand Down
3 changes: 3 additions & 0 deletions app/src/main/res/values/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@
<string name="restaurant_info_phone_number">전화번호</string>
<string name="restaurant_info_location_description">위치</string>

<string name="restaurant_info_menu_report_button">내가 먼저 메뉴 제보하기</string>
<string name="restaurant_info_menu_report_description">메뉴는 매일 11시에 업데이트됩니다.</string>

<string name="location_permission_dialog_description">편리한 뷔페 검색을 위해 위치 서비스 사용에 동의 하시겠습니까?</string>
<string name="location_permission_denied_toast">위치 권한을 허용해주세요</string>
<string name="location_permission_denied_forever_toast">[설정 > 애플리케이션 > 메뉴머냐]에서 위치 권한을 허용해주세요</string>
Expand Down

0 comments on commit dc1ff83

Please sign in to comment.