Android 開発者サイトに従って、アプリケーションに gif 画像を追加しました。ただし、画像はアニメーションとして表示されず、通常の画像のように表示されます。
ドローアブルのアニメーション
<?xml version="1.0" encoding="utf-8"?>
<animation-list xmlns:android="http://schemas.android.com/apk/res/android"
android:oneshot="false">
<item android:drawable="@drawable/los01" android:duration="50" />
<item android:drawable="@drawable/los02" android:duration="50" />
</animation-list>
コーディング
layout.setBackgroundResource(R.drawable.bg);
img.setBackgroundResource(R.drawable.mylosanim);
AnimationDrawable frameAnimation = (AnimationDrawable) img.getBackground();
frameAnimation.start();
tv1.setText("Sorry!!!Play Again!!!");
tv3.setText("Your Level-1 Score:"+Integer.toString(score));
layout.setClickable(true);
frameAnimation.stop();