解決辦法,改為使用android-gif-drawable.jar來顯示gif圖片(需要配合com.android.support:support-v4:18.0.0使用) ...
解決辦法,改為使用android-gif-drawable.jar來顯示gif圖片(需要配合com.android.support:support-v4:18.0.0使用)
GifImageView imageView = new GifImageView(this); GifDrawable gifFromPath = null; try { gifFromPath = new GifDrawable(imagePath); // gif圖片在本機的路徑比如 /mnt/sdcard/ggggg.gif } catch (IOException e) { e.printStackTrace(); } imageView.setImageDrawable(gifFromPath);