2016-02-03 101 views
1

在沒有使用離子庫的情況下,在android中的ImageView中添加gif文件的最有效方法是什麼?在Android中添加GIF到ImageView中

什麼要幫忙的,太感謝你了

+1

的[在Android的一個ImageView的添加GIF圖片](可能的複製http://stackoverflow.com/問題/ 6533942 /添加-GIF圖像功能於一個-imageview的功能於機器人) – Shahzeb

回答

2

我見慣了最近最常用的方法是這樣的圖書館 Android GIF library 。 你會插入GIF動畫在layout.xml這樣

<pl.droidsonroids.gif.GifTextView 
 
    android:layout_width="match_parent" 
 
    android:layout_height="match_parent" 
 
    android:drawableTop="@drawable/left_anim" 
 
    android:drawableStart="@drawable/left_anim" 
 
    android:background="@drawable/bg_anim" 
 
    />