Skip to content

Commit

Permalink
[feat]: 검색 아이콘 따로 만들기
Browse files Browse the repository at this point in the history
  • Loading branch information
kangyuri1114 committed Apr 20, 2024
1 parent dd322df commit 14a1f46
Showing 1 changed file with 13 additions and 2 deletions.
15 changes: 13 additions & 2 deletions feature/projects/src/main/res/layout/fragment_projects.xml
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,8 @@
android:layout_marginHorizontal="20dp"
android:background="@drawable/search_background"
android:cursorVisible="true"
android:drawableStart="@drawable/ic_search_24"
android:drawablePadding="7dp"
android:fontFamily="@font/pretendardblack"
android:fontFamily="@font/pretendardmedium"
android:hint="@string/searchbar_hint"
android:inputType="text"
android:paddingStart="20dp"
Expand All @@ -51,6 +50,18 @@
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/cl_top_app_bar" />

<ImageView
android:layout_width="30dp"
android:layout_height="30dp"
android:layout_marginVertical="10dp"
android:layout_marginTop="8dp"
android:layout_marginEnd="20dp"
android:src="@drawable/ic_search_24"
app:layout_constraintEnd_toEndOf="@+id/et_searchbar"
app:layout_constraintTop_toTopOf="@+id/et_searchbar"
app:layout_constraintBottom_toBottomOf="@+id/et_searchbar"
/>

<androidx.recyclerview.widget.RecyclerView
android:id="@+id/rv_search_keyword"
android:layout_width="match_parent"
Expand Down

0 comments on commit 14a1f46

Please sign in to comment.