码迷,mamicode.com
首页 > 移动开发 > 详细

Android动画之正弦曲线运动

时间:2015-07-17 12:03:52      阅读:257      评论:0      收藏:0      [点我收藏+]

标签:animation   android   布局   layout   

【声明】转载请注明出处,此文出自指尖飞落的博客:http://blog.csdn.net/huntersnail

——尊重作者,知识无价,交流无限!


<?xml version="1.0" encoding="utf-8"?>

<!--
指定移动的轨迹 
android:interpolator="@android:anim/cycle_interpolator"
cycle_interpolator:按照正弦曲线

-->
<translate xmlns:android="http://schemas.android.com/apk/res/android"
    android:duration="120"
    android:fromXDelta="0"
    android:interpolator="@android:anim/cycle_interpolator"
    android:repeatCount="3"
    android:toXDelta="5" >
<!-- fromXDelta\toXDelta:位移的开始点和终止点 -->

</translate>

技术分享


O(∩_∩)O哈哈~欢迎各种吐槽、鄙视、指教、交流......

☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆转载请注明出处?指尖飞落的博客☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆


版权声明:本文为博主原创文章,未经博主允许不得转载。

Android动画之正弦曲线运动

标签:animation   android   布局   layout   

原文地址:http://blog.csdn.net/huntersnail/article/details/46924635

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