简体   繁体   English

Android中的文本字段动画

[英]Text field animation in android

Can someone tell me how do I create a animation effect in android. 有人可以告诉我如何在android中创建动画效果。 I want a TextView say Name , Age, Sex move from left to a particular position on screen. 我想要一个TextView说Name,Age,Sex从左边移动到屏幕上的特定位置。 For eg: like if the TextView comes moving from left end of the screen.These fields are vertically arranged on a linear layout. 例如:例如TextView从屏幕的左端移动。这些字段垂直排列在线性布局上。

make a new xml in res/anim/ named as ltor.xml with the contents 在res / anim /中创建一个新的xml,命名为ltor.xml,内容如下

<set xmlns:android="http://schemas.android.com/apk/res/android"
         android:shareInterpolator="false">
        <translate android:fromXDelta="-100%" android:toXDelta="0%"
          android:fromYDelta="0%" android:toYDelta="0%"
         android:duration="700"/>
       </set>

give the following attribute in the view you want to animate. 在要设置动画的视图中提供以下属性。

android:animation="@anim/ltor"

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM