본문 바로가기

Android Studio

(Android Studio) assets 접근하여 파일 가져오기

336x280(권장), 300x250(권장), 250x250, 200x200 크기의 광고 코드만 넣을 수 있습니다.

출처 : http://andriod77.blogspot.kr/2014/08/android-assets.html


1
2
3
4
5
6
7
8
9
10
11
12
imageView.setImageBitmap(bitmap);
 
 
AssetManager assetmanager = getResources().getAssets();
Bitmap bitmap = null;
try{
    InputStream is = assetmanager.open("test"+".png",AssetManager.ACCESS_BUFFER);
    bitmap = BitmapFactory.decodeStream(is);
}catch(Exception e){
}
 
imageView.setImageBitmap(bitmap);
cs