-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
32 additions
and
0 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |