显示gif的Android应用

时间:2012-05-31 19:03:06

标签: android eclipse gif

Display Animated GIF

我正在阅读上面的链接以及其他一些但我不能让我的工作。我希望它只是在一个视图或类似的东西中运行gif图像,或者将它分成帧,然后扔掉每一帧。是否有视频或其他内容或有人在那里发布xml,java文件和他们使用的图片。我需要一个非常详细的tuturial这个。

还可以在这里发送用户消息吗?


这是java类(FrenchSilk)

import android.app.Activity;
import android.os.Bundle;
import android.view.SurfaceView;

public class FrenchSilk extends Activity {
    /** Called when the activity is first created. */
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.frenchsilk);

        SurfaceView v = (SurfaceView) findViewById(R.id.surfaceView1);
        GifRun w = new GifRun();
        w.LoadGiff(v, this, R.drawable.rotating_planet);

    }
}

这是XML类(frenchsilk)

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout 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"
android:orientation="vertical"
tools:ignore="HardcodedText" >

<!--    <TextView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_gravity="center"
    android:gravity="center"
    android:text="Words"
    android:textSize="25dp" />  
-->


<SurfaceView
    android:id="@+id/surfaceView1"
    android:layout_width="match_parent"
    android:layout_height="match_parent" />


</LinearLayout>

我在Drawable-hdpi文件夹中有一个名为rotating_planet

的gif文件

我关注的是youtube视频,但我不知道应该在GifRun课程中,或者是否有不同的方式来显示动画gif。

1 个答案:

答案 0 :(得分:-1)