0

アニメーション GIF を表示

上記のリンクと他のリンクを読んでいましたが、私のものを機能させることができません。ビューなどでgif画像だけを実行したり、フレームに分割して各フレームをスローしたりしたかったのです。これにビデオか何かがありますか、誰かがそこにxml、javaファイル、および使用した写真を投稿できますか. これには本当に詳細なチュートリアルが必要です。

また、ここでユーザーにメッセージを送信することは可能ですか?


これは 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 クラスです (フレンチシルク)

<?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を表示する別の方法があるかどうかはわかりません。

4

1 に答える 1

-1

ここからGifRunをダウンロードしてください.....

https://www.dropbox.com/s/hij2gztuitz2lbn/TheGif.zip

于 2013-06-14T00:11:18.857 に答える