목록그림자 (1)
woong's
Image 그림자 효과 주기 Colored By Color Scripter™ 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 private static Bitmap getDropShadow(Bitmap bitmap) { if (bitmap == null) return null; int think = 15; int w = bitmap.getWidth(); int h = bitmap.getHeight(); int newW = w - (think); int newH = h - (think); Bitmap.Config conf = Bitmap.Config.ARGB_8888; Bi..
Develop/Android
2016. 2. 14. 16:09