码迷,mamicode.com
首页 > 其他好文 > 详细

X、Y轴抖动的动画

时间:2014-09-23 15:31:44      阅读:154      评论:0      收藏:0      [点我收藏+]

标签:android   style   blog   http   color   io   文件   div   sp   

实现这个动画效果用到了interpolator属性,这样就能让一些控件产生自定义的抖动效果

这是用作interpolator的文件,用来做动画循环

cycle.xml

<?xml version="1.0" encoding="utf-8"?>
<cycleInterpolator 
    xmlns:android="http://schemas.android.com/apk/res/android" 
    android:cycles="20" />

 

x轴抖动:

<?xml version="1.0" encoding="utf-8"?>
<translate 
    xmlns:android="http://schemas.android.com/apk/res/android" 
    android:fromXDelta="0" 
    android:toXDelta="10" 
    android:duration="1000" 
    android:interpolator="@anim/cycle" />

 

y轴抖动:

<?xml version="1.0" encoding="utf-8"?>
<translate 
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:duration="1000"
    android:fromYDelta="0"
    android:interpolator="@anim/cycle"
    android:toYDelta="10" >
</translate>

 

有角度的抖动:

<?xml version="1.0" encoding="utf-8"?>
<rotate 
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:duration="180"
    android:fromDegrees="-2"
    android:pivotX="100%"
    android:pivotY="100%"
    android:repeatCount="infinite"
    android:repeatMode="reverse"
    android:toDegrees="2" />

 

X、Y轴抖动的动画

标签:android   style   blog   http   color   io   文件   div   sp   

原文地址:http://www.cnblogs.com/tianzhijiexian/p/3988327.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!