I want an image to move horizontally. i.e image should move from left end bottom corner to right end bottom corner once. No need to come back again to left end bottom corner.
The piece of code which I tried was
<set xmlns:android="http://schemas.android.com/apk/res/android"
android:interpolator="@android:anim/linear_interpolator">
<translate android:fromXDelta="0%p" android:toXDelta="200%p"
android:duration = "2000"/>
</set>
this moves the image from left till right. But its again coming to the left side. Can anyone tell me how to solve this?