I'm developing an Android 2.2 application.

I want to move an image from left side of the screen to the right side of the screen.

How can I do that? I've read that I have to add this image to a ListView or to a GridView to setup this animation.

UPDATE

I've created the following files:

anim/translate_right

<?xml version="1.0" encoding="utf-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android"
    android:interpolator="@android:anim/accelerate_decelerate_interpolator">
    <translate
        android:fromXDelta="-100%p"
        android:toXDelta="0"
        android:duration="5000" />
</set>

anim/ship_layout_controller

<?xml version="1.0" encoding="utf-8"?>
<layoutAnimation xmlns:android="http://schemas.android.com/apk/res/android"
        android:delay="10%"
        android:animationOrder="reverse"
        android:animation="@anim/translate_right" />

layout/startpage

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="vertical">
    <TextView 
        android:id="@+id/appNameTextView"
        android:text="@string/app_name"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="center"
        android:layout_marginTop="40px"/>
    <Button
        android:id="@+id/PlayButton"
        android:text="@string/play"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="center"
        android:layout_marginTop="40px"/>
    <AbsoluteLayout
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        xmlns:android="http://schemas.android.com/apk/res/android">
        <ImageView
            android:id="@+id/greekShip"
            android:persistentDrawingCache="animation|scrolling"
            android:layoutAnimation="@anim/ship_layout_controller"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:src="@drawable/greekship"
            android:maxWidth="176px"
            android:maxHeight="87px"
            android:layout_x="-300px"/>
    </AbsoluteLayout>
</LinearLayout>

StartActivity.java

public class StartActivity extends Activity {

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.startpage);
    }

    @Override
    protected void onResume() {
        super.onResume();
        ImageView ship = (ImageView)findViewById(R.id.greekShip);

        ship.startAnimation(AnimationUtils.loadAnimation(this, R.anim.translate_right));
    }
}

But it doesn't work.

link|improve this question

I've read that I have to add this image to a ListView or to a GridView to setup this animation. you misread that. Umm... have you taken a look at the animation examples in the SDK? – Cristian Feb 20 '11 at 16:55
Move meaning animation? If so, you can take a look at the Animation class (a simple Translate animation should do it). If you just want it aligned to the right, set the Layout Gravity to the right. – Zarah Feb 20 '11 at 17:04
@Cristian: I'm reading Apress book Pro Android 2 and it says that. – VansFannel Feb 20 '11 at 17:32
@Zarah: Yes I want to animated a sail from left to right. – VansFannel Feb 20 '11 at 17:33
1  
@VansFannel: OK, let me explain it in order way: you don't need neither ListView nor GridView to do this animation. So, you misread that or the book is wrong (which I think it's not feasible). – Cristian Feb 20 '11 at 17:42
show 4 more comments
feedback

3 Answers

up vote 2 down vote accepted

Please take a look at the Animation class, specifically the Tween Animation, more specifically the Translate element. Create an animation file in your project then apply this animation to your image. For example, this animation would move an object from the center of the screen to the right side.

<?xml version="1.0" encoding="utf-8"?>
<translate
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:toXDelta="100%p"
    android:fromXDelta="0%"
    android:duration="300" 
    android:fillEnabled="true" 
    android:fillAfter="true">
</translate>

EDIT: To apply this animation to a Button, a TextView, an ImageView, etc.

ImageView imageView = (ImageView) findViewById(R.id.myImageView);
Animation exitAnimation = AnimationUtils.loadAnimation(this, R.anim.exit_animation);
imageView.startAnimation(exitAnimation);
link|improve this answer
I've read that tween animation is for elements inside of a view not to move the entire view. – VansFannel Feb 21 '11 at 6:11
Have you tried it, at least? An image IS a view, after all. – Zarah Feb 21 '11 at 6:23
I want to move an ImageView, not the image inside the imageView. – VansFannel Feb 21 '11 at 6:54
Tweened Animations Tweened animations are applied to Views, letting you define a series of changes in position, size, rotation, and opacity that animate the View contents. – VansFannel Feb 21 '11 at 7:22
EXACTLY. That is what you want, right? Again, have you tried if this works? – Zarah Feb 21 '11 at 7:26
show 4 more comments
feedback

I would check your source again. Maybe it's out of context. But the easiest way to do this is to use a Translate animation that originates from the Image's starting place and translates it to the other side of the screen. After that is done I usually register an animation callback so that I can update the true position of the image after the animation is over. hope that helps.

link|improve this answer
I have updated my question with a not working solution. – VansFannel Feb 22 '11 at 16:56
feedback

Or is it the Gallery that you are looking for?

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.