본문 바로가기

Android Studio

(Android Studio) 안드로이드 AssetFile 불러오기. 사용.

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

출처 : http://evnt-hrzn.tistory.com/23


1
2
3
4
5
6
7
8
try {
    AssetManager assetMgr = getAssets();
    InputStream is = assetMgr.open("dna.png");
     
    // TODO: 
catch (IOException e) {
    e.printStackTrace();
}
cs