Showing gif in android

前端 未结 6 762
故里飘歌
故里飘歌 2020-12-03 01:41

i have this code to show gif image with Movie.

public class GIFView extends View{        
private Movie movie;  
private InputStream is;  
private long movie         


        
6条回答
  •  情深已故
    2020-12-03 02:11

    The easiest way would be to use a WebView.

    Store your animated GIF in the assets folder. Then load the GIF by using the following code:

    WebView wv = (WebView) findViewById(R.id.webView1); wv.loadUrl("file:///android_asset/anim5.gif");

    webView1 is your WebView id, and anim5.gif is your GIF name.

提交回复
热议问题