int 썸네일형 리스트형 [Android] android.content.res.Resources$NotFoundException: String resource ID android.content.res.Resources$NotFoundException: String resource ID #0x25 위와 같은 에러가 뜨면 String resorceID 가 없다는 생각을 가장 먼저 할 것이다.그리고 그게 맞는 말이다. 하지만 만약 TextView나 EdtiText 같은 String 데이터를 추구하는 setText 함수 같은 곳에int형 데이터를 넣으면 위와 같은 에러가 발생 한다. 참고 하세요. 더보기 [ Android ] Color 값을 RGB로 public void toRGB(int color) { float red = color >> 16 & 0xff; float green = color >> 8 & 0xff; float blue = color & 0xff; Log.d("DEBUG1",red+" / "+green+ " / " +blue); } 간단한 함수이다.. 그래도 색깔 값을 이용할려면 자주 쓰일 듯하다. ㅎㅎ 더보기 이전 1 다음