如何使用样式
缓慢更改ImageView
例如,屏幕中的猫的图像,然后图像变暗然后消失,另一个猫的新图像替换为前一图像。经过一段时间后,ImageView
将一次又一次地更改..
提前致谢!
答案 0 :(得分:-1)
首先你需要在res中创建一个文件夹 RES /动画
然后创建名为xml
translate.xml
将此代码复制到其中
<translate xmlns:android="http://schemas.android.com/res/apk/android"
android:duration="4000"
android:fillAfter="false"
android:fillBefore="false"
android:fillEnabled="false"
android:fromXDelta="200"
android:fromYDelta="200"
android:repeatCount="0"
android:repeatMode="restart"
android:startOffset="1000"
android:toXDelta="0"
android:toYDelta="0" >
Then To use This Style
Animation animation = AnimationUtils.loadAnimation(
getApplicationContext(), R.animation.translate);
imageView.startAnimation(animation);
谢谢,它会起作用......
您可以相应地更改上述{{1}} xml