리소스(res) 폴더에 들어 있는 이미지들을 로딩할 때는 방법 2개

 

 

1.Resource 객체의 getDrawable() 메소드를 그리기 객체를 가져오는 방법

2.BitmapFactory.decodeResource() 메소드를 사용해서 이미지 비트맵 객체를 가져오는 방법

 

 

1.

// res가져오고
Resource res = getResources();

// 이미지 가져오고
res.getDrawable(R.drawalbe.smileimg);

2.

BitmapFactory.decodeResource() 메소드 - 생략 -