382_抖动的动画

来源:互联网 发布:模拟软件有哪些 编辑:程序博客网 时间:2024/05/16 12:30




抖动的动画


让一个View抖动起来


<?xml version="1.0" encoding="utf-8"?>
<translate xmlns:android="http://schemas.android.com/apk/res/android"
    android:duration="100"
    android:fromXDelta="-10%"
    android:repeatCount="5"
    android:repeatMode="reverse"
    android:toXDelta="10%" />




Animation animation = AnimationUtils.loadAnimation(this, R.anim.shake);
        view.startAnimation(animation);



0 0
原创粉丝点击