简体   繁体   中英

Text field animation in android

Can someone tell me how do I create a animation effect in android. I want a TextView say Name , Age, Sex move from left to a particular position on screen. For eg: like if the TextView comes moving from left end of the screen.These fields are vertically arranged on a linear layout.

make a new xml in res/anim/ named as ltor.xml with the contents

<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"

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

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