3.0 허니콤 이하
imgGif = (ImageView)findViewById(R.id.img_gif); aim = (AnimationDrawable) imgGif.getBackground(); imgGif.post(new Runnable() { @Override public void run() { aim.start(); } });
허니콤 이상
AnimationDrawable frame = (AnimationDrawable)imgGif.getBackground(); if(frame.isRunning()) { frame.stop(); } else { frame.stop(); frame.start(); }
animation define
.xml
'프로그래밍 > Android 짜투리 지식' 카테고리의 다른 글
[android] imageView.setColorFilter (0) | 2013.06.03 |
---|---|
[android] TextView 부분색상 (0) | 2013.04.04 |
[android] 제자리에서 도는 애니메이션 (0) | 2013.01.30 |
[androd] animation 적용 (0) | 2013.01.25 |
[android] toast text 위치 (0) | 2013.01.16 |