我想要一個動畫gif,因爲這是不可能在Android中我在轉換中使用單個幀。Android轉換動畫
除了它看起來像過渡類只會顯示兩個幀!我看到其他的激勵方法,但他們似乎並不適用於我在做什麼,還是顯得老convulated像一個較大嬰兒Android編譯
<transition xmlns:android="http://schemas.android.com/apk/res/android">
<item android:drawable="@drawable/activateanima"></item>
<item android:drawable="@drawable/activateanimb"></item>
<item android:drawable="@drawable/activateanimc"></item>
<item android:drawable="@drawable/activateanimc"></item>
<item android:drawable="@drawable/activateanimd"></item>
<item android:drawable="@drawable/activateanime"></item>
<item android:drawable="@drawable/activateanimf"></item>
<item android:drawable="@drawable/activateanimg"></item>
</transition>
我如何動畫的圖像表現得像一個動畫GIF,到位。沒有旋轉或翻譯在這裏。使用android 2.1+
我得到它與這種工作,種。對於我的ImageView,它必須是R.id.rocket,其中rocket是我的可繪製文件夾中的xml文件,而不是我的anim文件夾。我沒有創建一個動畫文件夾 – CQM