Skip to content

Commit

Permalink
feat: 리소스 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
yonghanJu committed Nov 17, 2023
1 parent 09ddd1d commit 0062bae
Show file tree
Hide file tree
Showing 5 changed files with 32 additions and 0 deletions.
Binary file added common/src/main/res/drawable/camera3x.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
9 changes: 9 additions & 0 deletions common/src/main/res/drawable/ic_search.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="28dp"
android:height="28dp"
android:viewportWidth="28"
android:viewportHeight="28">
<path
android:pathData="M24.566,25.509C25.136,26.079 26.014,25.2 25.445,24.643L20.805,19.99C22.433,18.19 23.332,15.847 23.329,13.42C23.329,7.988 18.912,3.57 13.479,3.57C8.047,3.57 3.629,7.988 3.629,13.42C3.629,18.852 8.047,23.27 13.479,23.27C15.929,23.27 18.194,22.366 19.926,20.869L24.566,25.509ZM4.866,13.42C4.866,8.668 8.739,4.807 13.478,4.807C18.23,4.807 22.09,8.668 22.09,13.42C22.09,18.171 18.23,22.032 13.478,22.032C8.739,22.032 4.866,18.171 4.866,13.42Z"
android:fillColor="#E09F1F"/>
</vector>
9 changes: 9 additions & 0 deletions common/src/main/res/drawable/pen_pressed.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">

<solid android:color="@color/back_white" />
<stroke
android:width="1dp"
android:color="@color/stroke_yello" />
<corners android:radius="20dp" />
</shape>
7 changes: 7 additions & 0 deletions common/src/main/res/drawable/selector_camera.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">

<!-- selector 구현-->
<item android:state_selected="true" android:drawable="@drawable/camera_pressed"/>
<item android:state_selected="false" android:drawable="@drawable/camera_unpressed"/>
</selector>
7 changes: 7 additions & 0 deletions common/src/main/res/drawable/selector_pen.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">

<!-- selector 구현-->
<item android:state_selected="true" android:drawable="@drawable/pen_pressed"/>
<item android:state_selected="false" android:drawable="@drawable/camera_unpressed"/>
</selector>

0 comments on commit 0062bae

Please sign in to comment.