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 파일이 문제 없이 실행 됩니다.
참고하세요.
'나의 플랫폼 > 안드로이드' 카테고리의 다른 글
[Android] 강제적으로 Toolbar arrow 변경 (0) | 2016.01.05 |
---|---|
[Android] ResizableImageView (0) | 2015.12.29 |
[Android] can not run program svn (0) | 2015.12.22 |
[Android] Viewpager가 갱신이 되 않는 현상. (0) | 2015.12.22 |
[Android] ViewPager + SwipeRefreshLayout (0) | 2015.12.22 |