我正在从服务器下载我的应用中的GIF图像,然后我用ImageView
显示它,但它没有动画。
有没有其他方式来播放下载的动画 GIF图像。
提前谢谢。
答案 0 :(得分:10)
我使用下面的自定义视图而不是图像视图。
public class SampleView extends View {
private Movie mMovie;
private long mMovieStart;
public SampleView(Context context) {
super(context);
setFocusable(true);
java.io.InputStream is;
is = context.getResources().openRawResource(R.drawable.girl_dances);
mMovie = Movie.decodeStream(is);
}
public SampleView(Context context, AttributeSet attrSet) {
super(context, attrSet);
setFocusable(true);
java.io.InputStream is;
is = context.getResources().openRawResource(R.drawable.girl_dances);
mMovie = Movie.decodeStream(is);
}
public SampleView(Context context, AttributeSet attrSet, int defStyle) {
super(context, attrSet, defStyle);
setFocusable(true);
java.io.InputStream is;
is = context.getResources().openRawResource(R.drawable.girl_dances);
mMovie = Movie.decodeStream(is);
}
@Override
protected void onDraw(Canvas canvas) {
canvas.drawColor(0x00000000);
Paint p = new Paint();
p.setAntiAlias(true);
long now = android.os.SystemClock.uptimeMillis();
if (mMovieStart == 0) { // first time
mMovieStart = now;
}
if (mMovie != null) {
int dur = mMovie.duration();
if (dur == 0) {
dur = 1000;
}
int relTime = (int) ((now - mMovieStart) % dur);
mMovie.setTime(relTime);
mMovie.draw(canvas, getWidth() / 2 - mMovie.width() / 2,
getHeight() / 2 - mMovie.height() / 2);
invalidate();
}
}
}
XML布局:
<com.test.sample.SampleView
android:id="@+id/gif_view"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
答案 1 :(得分:1)
经过一些研究,似乎最好(或最简单)的解决方案是使用WebView:
前:
将myAnimatedGif.gif文件放入assets文件夹中。
创建一个xml web视图:
<WebView
android:id="@+id/myWebView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>
然后将gif文件加载到Web视图中:
WebView view = (WebView) findViewById(R.id.myWebView);
view.loadUrl("file:///android_asset/myAnimatedGif.gif");
享受!
另一种解决方案是使用这种库: https://github.com/koral--/android-gif-drawable
答案 2 :(得分:0)
您可以使用WebView实现此目的。 这就是我使用的:
import android.view.View;
import android.webkit.WebView;
import android.widget.LinearLayout;
import android.widget.TextView;
public class Spinner extends LinearLayout{
public Spinner(Context context) {
super(context);
// TODO Auto-generated constructor stub
View.inflate(context, R.layout.spiner, this);
WebView web = (WebView) findViewById(R.id.web);
web.loadUrl("file:///android_asset/booting.gif");
}
public void setText(String text){
TextView t = (TextView) findViewById(R.id.txtloading);
t.setText(text);
}
public void refresh(){
WebView web = (WebView) findViewById(R.id.web);
web.loadUrl("file:///android_asset/booting.gif");
}
}
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:gravity="center|center_vertical"
android:padding="10dp">
<WebView android:id="@+id/web"
android:layout_width="24dp"
android:layout_height="12dp"
/>
<TextView
android:id="@+id/txtloading"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Loading..."
/>
</LinearLayout>
您可以使用
Spinner spinner = new Spinner(this);
myContainer.addView(spinner);
您可以在微调器上调用refresh以确保图像播放:
spinner.refresh();
希望有所帮助。