[Android] Color
Color 지정방법에 대한 다양한 방법 소개 You can use various functions from the Color class to get the same effect of course.holder.text.setTextColor(Color.RED);Color.parseColor (Manual) (like LEX uses)text.setTextColor(Color.parseColor("#FFFFFF"));Color.rgb and Color.argb (Manual rgb) (Manual argb) (like Ganapathy uses)holder.text.setTextColor(Color.rgb(200,0,0)); holder.text.setTextColor(Color.argb(0,200,0,0)..
Computer/Android
2017. 2. 19. 01:07