4

我一直在尝试实现 ViewFlipper 及其翻译动画。我可以参考很多页面,但无论我如何尝试,我都无法看到 outAnimation 发生。下面是我的项目,目前没有看到翻译动画,但如果我注释掉 vf.setOutAnimation... 部分,inAnimation 动画突然开始工作。...为什么?

package com.example.testview;

import android.app.Activity;
import android.os.Bundle;
import android.view.MotionEvent;
import android.view.View;
import android.view.View.OnTouchListener;
import android.view.animation.AnimationUtils;
import android.widget.TextView;
import android.widget.ViewFlipper;

public class TestViewActivity extends Activity implements OnTouchListener {

    private ViewFlipper vf;
    private float firstTouchX;
    private float leaveTouchX;

@Override public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.main);
    vf = (ViewFlipper) findViewById(R.id.viewFlipper1);
    vf.setOnTouchListener(this);
}

    public boolean onTouch(View v, MotionEvent event) {

        switch (event.getAction()) {
            case MotionEvent.ACTION_DOWN:
                    firstTouchX = event.getX();
                    break;

            case MotionEvent.ACTION_UP:
                    leaveTouchX = event.getX();

                if (this.firstTouchX - 50f > leaveTouchX) {

                    vf.setInAnimation(AnimationUtils.loadAnimation(this, R.anim.right_in));
                    vf.setOutAnimation(AnimationUtils.loadAnimation(this, R.anim.left_out));
                    vf.showNext();
                }
                if (this.firstTouchX + 50f < leaveTouchX) {

                    vf.setInAnimation(AnimationUtils.loadAnimation(this, R.anim.left_in));
                    vf.setOutAnimation(AnimationUtils.loadAnimation(this, R.anim.right_out));
                    vf.showPrevious();
                }
                break;
        }
        return true;
    }
}

res/anim/left_in.xml:

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

res/anim/left_out.xml:

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

res/anim/right_in.xml:

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

res/anim/right_out.xml:

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

资源/布局/main.xml

<?xml version="1.0" encoding="utf-8"?>
    <ViewFlipper
        xmlns:android="http://schemas.android.com/apk/res/android"
        android:id="@+id/viewFlipper1"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:orientation="vertical" >

         <include
            android:id="@+id/first"
            layout="@layout/first" />

        <include
            android:id="@+id/second"
            layout="@layout/second" />

        <include
            android:id="@+id/third"
            layout="@layout/third" />

    </ViewFlipper>

first.xml/second.xml/third.xml(只是自己的图片id不同)

<?xml version="1.0" encoding="utf-8"?>
<ImageView xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:src="@drawable/img">
</ImageView>

大编辑:我只是根据我的帖子构建了一个较小的项目,它似乎可以工作......也许是通过省略一些我认为不必要的代码来开始讨论导致我的问题......我真的很抱歉,如果任何人都试图回答。我会做更多的调查,并希望我可以发布可供以后参考的故障,除非模组删除了这个问题。

大编辑2:今天我再次尝试,它没有工作,大概是因为我使用了 Android ARM 2.2 模拟器。一旦我切换到 ARM/Inter 2.3.3,它就可以工作了。

4

1 回答 1

0

试试这个,将 outAnimation 替换为 inAnimation 之类的,

            if (this.firstTouchX - 50f > leaveTouchX) {

                vf.setOutAnimation(AnimationUtils.loadAnimation(this, R.anim.left_out));
                vf.setInAnimation(AnimationUtils.loadAnimation(this, R.anim.right_in));
                vf.showNext();
            }
            if (this.firstTouchX + 50f < leaveTouchX) {

                vf.setOutAnimation(AnimationUtils.loadAnimation(this, R.anim.right_out));
                vf.setInAnimation(AnimationUtils.loadAnimation(this, R.anim.left_in));
                vf.showPrevious();
            }
            break;

然后尝试它可能是工作!

于 2012-05-25T09:28:37.780 回答