Skip to content

Commit

Permalink
fix : 검색결과화면 테두리 색 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
chanubc committed Nov 15, 2023
1 parent af50774 commit 29f8e81
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">

<corners android:radius="24dp" />

<solid android:color="@android:color/white" />

<stroke
android:width="1dp"
android:color="#BECADA" />

</shape>
5 changes: 3 additions & 2 deletions feat/capture/src/main/res/layout/item_searched_food.xml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,9 @@
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="10dp"
android:background="@drawable/rounded_corner_shape">
android:layout_marginHorizontal="28dp"
android:layout_marginVertical="14dp"
android:background="@drawable/rounded_corner_shape_lightgray">

<TextView
android:id="@+id/tv_name"
Expand Down

0 comments on commit 29f8e81

Please sign in to comment.