-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* 드래그 된 곳까지 색 칠하기 * 드래그 된 곳 까지 인덱스에 따라 색깔 다르게 하기 * index에 따라 드래그 아이템, 리플 효과 색깔 변경
- Loading branch information
Showing
4 changed files
with
44 additions
and
1 deletion.
There are no files selected for viewing
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,11 @@ | ||
package com.tak8997.library | ||
|
||
import android.graphics.Color | ||
|
||
enum class ItemColor(val color: Int) { | ||
|
||
Purple(Color.parseColor("#5f14d3")), | ||
Green(Color.parseColor("#a4c639")), | ||
Blue(Color.parseColor("#0009ff")), | ||
Red(Color.parseColor("#ff2222")) | ||
} |
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
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
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