리소스(res) 폴더에 들어 있는 이미지들을 로딩할 때는 방법 2개
1.Resource 객체의 getDrawable() 메소드를 그리기 객체를 가져오는 방법
2.BitmapFactory.decodeResource() 메소드를 사용해서 이미지 비트맵 객체를 가져오는 방법
1.
// res가져오고
Resource res = getResources();
// 이미지 가져오고
res.getDrawable(R.drawalbe.smileimg);
2.
BitmapFactory.decodeResource() 메소드 - 생략 -
'■ Android > Tip' 카테고리의 다른 글
[Android] 그림자 넣기 (0) | 2020.01.17 |
---|---|
[Android] Bitmap 사용법 (0) | 2020.01.17 |
플로팅 작업 버튼(FloatingActionButton) 사용법 - (밑에 우측에 동그라미) (0) | 2020.01.15 |
[Android] SnackBar 사용법 (=Toast(토스트)),(=팝업) (0) | 2020.01.14 |
[Android] Toast(토스트) 사용법, 위치바꿈, 모양바꿈 (0) | 2020.01.14 |