Я хочу создать похожую на пузырьки анимацию для моего Button
, и я довольно новичок в анимации. Но это совсем не работает - ничего не происходит.
val menuBtnParent: View = root.find(R.id.menuBtnParent)
val anim = AnimationUtils.loadAnimation(menuBtnParent.context, R.anim.bubble_anim)
menuBtnParent.apply {
animation = anim
startAnimation(animation)
}
Анимация xml:
<?xml version="1.0" encoding="utf-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android" >
<scale
android:duration="2000"
android:fromXScale="0.3"
android:toXScale="1.0"
android:fromYScale="0.3"
android:toYScale="1.0"
android:pivotX="50%"
android:pivotY="50%" />
</set>