我已经编写了代码来显示单个图像的动画。现在我想在 gridview 中显示 gif 图像以显示动画图像。是否可能以及如何做到这一点?
问问题
2065 次
2 回答
1
我想它可能会对你有所帮助.. 这是一个 GifWebView 演示.. 请检查它...
我的布局.xml
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<LinearLayout
android:id="@+id/toplayout"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
</LinearLayout>
</RelativeLayout>
MyLayout.java 文件
package com.test;
import android.app.Activity;
import android.os.Bundle;
import android.widget.LinearLayout;
public class MainActivity extends Activity
{
LinearLayout toplayout;
GifWebView view;
@Override
public void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
setContentView(R.layout.mylayout);
toplayout = (LinearLayout)findViewById(R.id.toplayout);
InputStream stream = null;
try
{
stream = getAssets().open("ppp.gif");
} catch (IOException e) {
e.printStackTrace();
}
view = new GifWebView(this, stream);
toplayout.addView(view);
}
}
GifWebView.java 文件
package com.test;
import android.content.Context;
import java.io.InputStream;
import android.graphics.Canvas;
import android.graphics.Color;
import android.graphics.Movie;
import android.os.SystemClock;
import android.view.View;
public class GifWebView extends View {
private Movie mMovie;
InputStream mStream;
long mMoviestart;
public GifWebView(Context context, InputStream stream) {
super(context);
mStream = stream;
mMovie = Movie.decodeStream(mStream);
}
@Override
protected void onDraw(Canvas canvas) {
canvas.drawColor(Color.TRANSPARENT);
super.onDraw(canvas);
final long now = SystemClock.uptimeMillis();
if (mMoviestart == 0) {
mMoviestart = now;
}
final int relTime = (int) ((now - mMoviestart) % mMovie.duration());
mMovie.setTime(relTime);
mMovie.draw(canvas, 10, 10);
this.invalidate();
}
}
将任何 gif 文件放在 Assets 目录中并给出适当的名称。在这个演示中,名称是 ppp.gif。
于 2013-03-25T06:12:40.077 回答
0
我会尝试使用此视图并将其简单地添加到 GridView 自定义单元格布局中。
本质上,布局中的GifView应该可以工作。
于 2013-03-25T05:34:10.833 回答