본문 바로가기

나의 플랫폼/안드로이드

[Android] GifView

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

Local Gif 파일을 실행하는데 좋은 라이브러리가 있어서 공유하고자 합니다.


https://github.com/koral--/android-gif-drawable-eclipse-sample


<pl.droidsonroids.gif.GifImageView
android:id="@+id/emoticon"
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>



try {
GifDrawable gifDrawable =
new GifDrawable(getResources(), R.drawable.giffile);
mEmoticon.setImageDrawable(gifDrawable);
} catch (Resources.NotFoundException e) {
// TODO Auto-generated catch block
if (RingQConfig.DEBUG) e.printStackTrace();
} catch (IOException e) {
// TODO Auto-generated catch block
if (RingQConfig.DEBUG) e.printStackTrace();
}


딱 위 소스만 작성 하면 gif 파일이 문제 없이 실행 됩니다.


참고하세요.