我想在我的應用程序中使用gif動畫。如何在android中使用gif動畫?
我該怎麼辦呢?我已經看到this tutorial
但我沒有得到任何具體的解決辦法,請大家幫我,如何向我們的gif在我的代碼。
Xml代碼
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:orientation="vertical"
android:layout_height="match_parent"
<TextView
android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:textColor="#ACC437"
android:textStyle="bold"
android:text="WelCome To This Blog"
android:textAppearance="?android:attr/textAppearanceLarge" />
<com.androidqa.AnimationView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
/>
</LinearLayout>
視圖類
public class AnimationView extends View {
private Movie mMovie;
private long mMovieStart;
private static final boolean DECODE_STREAM = true;
private static byte[] streamToBytes(InputStream is) {
ByteArrayOutputStream os = new ByteArrayOutputStream(1024);
byte[] buffer = new byte[1024];
int len;
try {
while ((len = is.read(buffer)) >= 0) {
os.write(buffer, 0, len);
}
} catch (java.io.IOException e) {
}
return os.toByteArray();
}
public AnimationView(Context context,AttributeSet attrs) {
super(context,attrs);
setFocusable(true);
java.io.InputStream is;
// YOUR GIF IMAGE Here
is = context.getResources().openRawResource(R.drawable.th_welcome);
if (DECODE_STREAM) {
mMovie = Movie.decodeStream(is);
} else {
byte[] array = streamToBytes(is);
mMovie = Movie.decodeByteArray(array, 0, array.length);
}
}
@Override
public void onDraw(Canvas canvas) {
long now = android.os.SystemClock.uptimeMillis();
if (mMovieStart == 0) { // first time
mMovieStart = now;
}
if (mMovie != null) {
int dur = mMovie.duration();
if (dur == 0) {
dur = 3000;
}
int relTime = (int) ((now - mMovieStart) % dur);
Log.d("", "real time :: " +relTime);
mMovie.setTime(relTime);
mMovie.draw(canvas, getWidth() - 200, getHeight()-200);
invalidate();
}
}
}
請建議我要這個任何解決方案.... :)
你有什麼問題? – GrIsHu
先生我從http://iamvijayakumar.blogspot.in/2012/06/android-animated-gif-example.html下來這個代碼下降,但是當我試圖導入這個,它得到了結果,我需要什麼我需要(gif動畫的一個例子,請幫助我... :( –
什麼是你得到的錯誤?你是什麼意思的腐敗? – GrIsHu