Skip to content

Commit

Permalink
#86 fix : 음식점 검색창 글자 사이즈 줄이기
Browse files Browse the repository at this point in the history
  • Loading branch information
yy0ung committed Dec 13, 2023
1 parent 30c6e57 commit 85f7132
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
3 changes: 2 additions & 1 deletion Aos/app/src/main/res/layout/fragment_home.xml
Original file line number Diff line number Diff line change
Expand Up @@ -56,11 +56,12 @@
<TextView
android:id="@+id/tiet_input_search"
style="@style/TextMediumRegular"
android:textSize="16sp"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:background="@null"
android:maxLines="1"
android:paddingHorizontal="16dp"
android:paddingHorizontal="12dp"
android:text="@string/search_restaurant_title"
android:textColor="@color/nn_dark5"
app:layout_constraintBottom_toBottomOf="@id/v_search"
Expand Down
3 changes: 2 additions & 1 deletion Aos/app/src/main/res/layout/fragment_restaurant_search.xml
Original file line number Diff line number Diff line change
Expand Up @@ -58,14 +58,15 @@
<com.google.android.material.textfield.TextInputEditText
android:id="@+id/tiet_input_search"
style="@style/TextMediumRegular"
android:textSize="16sp"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:background="@null"
android:hint="@string/search_restaurant_title"
android:inputType="text"
android:maxLines="1"
android:onTextChanged="@{(word, a, b, c) -> vm.searchRestaurant(word)}"
android:paddingHorizontal="16dp"
android:paddingHorizontal="12dp"
app:layout_constraintBottom_toBottomOf="@id/v_search"
app:layout_constraintEnd_toStartOf="@id/iv_search"
app:layout_constraintStart_toStartOf="@id/v_search"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -65,11 +65,12 @@
<TextView
android:id="@+id/tv_search_keyword"
style="@style/TextMediumRegular"
android:textSize="16sp"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:background="@null"
android:maxLines="1"
android:paddingHorizontal="16dp"
android:paddingHorizontal="12dp"
app:layout_constraintBottom_toBottomOf="@id/v_search"
app:layout_constraintEnd_toEndOf="@id/v_search"
app:layout_constraintStart_toStartOf="@id/v_search"
Expand Down

0 comments on commit 85f7132

Please sign in to comment.