XMLファイルからスケールアニメーションをロードし、それを表示して開始するように設定します。
アニメーションがビューの左上のポイントの周りにあることがわかりました。
どうすれば中心を回ることができますか?
これは私のアニメーションXMLです
<?xml version="1.0" encoding="utf-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android">
<scale
android:fromXScale="0.5"
android:toXScale="1.1"
android:fromYScale="0.5"
android:toYScale="1.1"
android:duration="200"/>
<scale
android:fromXScale="1"
android:toXScale="0.91"
android:fromYScale="1"
android:toYScale="0.91"
android:startOffset="200"
android:duration="400"/>
<alpha
android:fromAlpha="0.5"
android:toAlpha="1"
android:duration="400"/>
<alpha
android:fromAlpha="1"
android:toAlpha="0"
android:duration="300"
android:startOffset="700"/>
</set>
そしてJavaコード
rightAnim = AnimationUtils.loadAnimation(this, R.anim.show_fade_out);
rightAnimObj.setAnimation(rightAnim);
rightAnim.startNow();