colors.xml 에 있는 리소스를 사용하기 위한 code spinnet fun getColorIntFromResources(context: Context, id: Int): Int? { try { if (Build.VERSION.SDK_INT>= 23) { return context.resources.getColor(id, null) } else { return context.resources.getColor(id) } } catch (e: Resources.NotFoundException) { Log.e("KHJI", e.message.toString()) return null } } 🙉 해당 code spinnet 에서 try ~ catch 를 사용하는 이유는? 더보기 getColor API pu..