336x280(권장), 300x250(권장), 250x250, 200x200 크기의 광고 코드만 넣을 수 있습니다.
BitmapFactory Class에서 Stream을 읽어오는 기능을 하는데, Stream을 다 읽어 오기전에 연결을 다 끊어 NULL을 반환할 경우가 있다. 아래 처럼 하면 해결 될 듯..
HttpGet httpRequest = null;
URL url = new URL(CommunicationManager.getUrlEncode(url));
httpRequest = new HttpGet(url.toURL());
HttpClient httpclient = new DefaultHttpClient();
HttpResponse response = (HttpResponse)httpclient.execute(httpRequest);
HttpEntity entity = response.getEntity();
BufferedHttpEntity bufHttpEntity = new BufferedHttpEntity(entity);
InputStream instream = bufHttpEntity.getContent();
Bitmap bm = BitmapFactory.decodeStream(instream);
출처: http://cafe.naver.com/busanandroid.cafe?iframe_url=/ArticleRead.nhn%3Farticleid=96
'Programming > Android' 카테고리의 다른 글
[Android] OutOfMemoryError bitmap size exceeds VM budget 메모리 에러 (1) | 2011.03.08 |
---|---|
[Android] memory heap, out of memory (0) | 2011.03.07 |
[Android] Bitmap, byte[] 간의 변환 (5) | 2011.02.18 |
[Android] CustomView 만들기 (0) | 2011.02.15 |
[Android] 파일을 bitmap으로 만들지않고 width와 height값 가져오기 (0) | 2011.01.28 |