当按下一个按钮时,我需要设置该按钮的动画....按钮将在释放后按下和原始尺寸缩小一点..(非常像火药)
我用这个:
<?xml version="1.0" encoding="utf-8"?>
Run Code Online (Sandbox Code Playgroud)
<scale
xmlns:android="http://schemas.android.com/apk/res/android"
android:duration="200"
android:fromXScale="1.0"
android:fromYScale="1.0"
android:pivotX="50%"
android:pivotY="50%"
android:toXScale="0.9"
android:toYScale="0.9" >
</scale>
Run Code Online (Sandbox Code Playgroud)
但它不能根据我的需要工作,,,我需要按钮保持很小,直到它被按下.在发布时变得正常.