アニメーションでアニメーション化する (拡大するだけ) イメージビューがあります。アニメーションの XML コード:
<?xml version="1.0" encoding="utf-8"?>
<set xmlns:android="schemas.android.com/apk/res/android"
xmlns:android1="http://schemas.android.com/apk/res/android"
android:interpolator="@android:anim/linear_interpolator" >
<scale
android:duration="1000"
android:fillBefore="true"
android:fromXScale="1.0"
android:fromYScale="1.0"
android:toXScale="3.0"
android:toYScale="3.0" />
</set>
そして私の活動では:
createAnims();
playButton.startAnimation(animPlay1);
createAnims() メソッドがこれを行う場所:
animPlay1 = AnimationUtils.loadAnimation(this, R.anim.playbut_scaleup);
animPlay1.setRepeatCount(2);
animPlay1.start();
画像は表示されていますが、アニメーションが機能していません。(ImageView は playButton と呼ばれます)