向上/向下滑动动画Textview onClickListener无法正常工作

时间:2014-09-06 05:48:30

标签: android android-animation

我正在为我的四个TextView使用上滑/下移动画。以下是我的XML

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/scrollView1"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:background="@drawable/bg" >

<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:background="@drawable/shadow"
    android:orientation="vertical"
    android:weightSum="2.0" >

    <RelativeLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_weight="1.0" >

        <TextView
            android:id="@+id/textViewblue"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignParentLeft="true"
            android:layout_alignParentTop="true"
            android:layout_centerInParent="true"
            android:layout_marginLeft="25dp"
            android:background="@drawable/blue"
            android:gravity="center"
            android:text="blue" />

        <TextView
            android:id="@+id/textVieworange"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignParentRight="true"
            android:layout_alignParentTop="true"
            android:layout_centerInParent="true"
            android:layout_marginRight="25dp"
            android:background="@drawable/orange"
            android:gravity="center"
            android:text="orange" />
    </RelativeLayout>

    <RelativeLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_weight="1.0">

        <TextView
            android:id="@+id/textViewpink"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignParentLeft="true"
            android:layout_centerInParent="true"
            android:layout_alignParentTop="true"
            android:layout_marginLeft="25dp"
            android:background="@drawable/pink"
            android:gravity="center"
            android:text="pink" />

        <TextView
            android:id="@+id/textViewgreen"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignParentRight="true"
            android:layout_centerInParent="true"
            android:layout_alignParentTop="true"
            android:layout_marginRight="25dp"
            android:background="@drawable/green"
            android:gravity="center"
            android:text="green" />
    </RelativeLayout>
</LinearLayout>

以下是我的班级

    public class HomeScreenActivity extends Activity implements OnClickListener {

    TextView textViewblue, textVieworange, textViewpink,
            textViewgreen;
    Animation mAnimation_up, mAnimation_down;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_home_screen);
        mAnimation_up = new TranslateAnimation(
                TranslateAnimation.RELATIVE_TO_SELF, 0f,
                TranslateAnimation.RELATIVE_TO_SELF, 0f,
                TranslateAnimation.RELATIVE_TO_SELF, 1.6f,
                TranslateAnimation.RELATIVE_TO_SELF, 0f);
        mAnimation_up.setDuration(1000);
        mAnimation_up.setRepeatCount(-1);
        mAnimation_up.setRepeatMode(Animation.REVERSE);
        mAnimation_up.setInterpolator(new LinearInterpolator());

        mAnimation_down = new TranslateAnimation(
                TranslateAnimation.RELATIVE_TO_SELF, 0f,
                TranslateAnimation.RELATIVE_TO_SELF, 0f,
                TranslateAnimation.RELATIVE_TO_SELF, 0f,
                TranslateAnimation.RELATIVE_TO_SELF, 1.6f);
        mAnimation_down.setDuration(1000);
        mAnimation_down.setRepeatCount(-1);
        mAnimation_down.setRepeatMode(Animation.REVERSE);
        mAnimation_down.setInterpolator(new LinearInterpolator());
       initialize();
    }

    private void initialize() {

        textViewblue = (TextView) findViewById(R.id.textViewblue);
        textVieworange = (TextView) findViewById(R.id.textVieworange);
        textViewpink = (TextView) findViewById(R.id.textViewpink);
        textViewgreen = (TextView) findViewById(R.id.textViewgreen);

        textViewblue .setOnClickListener(this);
        textVieworange .setOnClickListener(this);
        textViewpink .setOnClickListener(this);
        textViewgreen .setOnClickListener(this);

        textViewblue .setAnimation(mAnimation_down);
        textViewpink .setAnimation(mAnimation_down);
        textVieworange .setAnimation(mAnimation_up);
        textViewgreen .setAnimation(mAnimation_up);
    }



    @Override
    public void onClick(View v) {
        Intent intentmenu;
        switch (v.getId()) {
        case R.id.textViewblue:
            Toast.makeText(this, "blue", Toast.LENGTH_LONG).show();
            break;
        case R.id.textVieworange:
             Toast.makeText(this, "orange", Toast.LENGTH_LONG).show();
            break;
        case R.id.textViewpink:
            Toast.makeText(this, "pink", Toast.LENGTH_LONG).show();
            break;
        case R.id.textViewgreen:
            Toast.makeText(this, "reeng", Toast.LENGTH_LONG).show();
            break;
        }
    }

}

问题在于,当int位置的任何TextView幻灯片意味着动画开始时,onClickListener仅在其XML位置工作,而不是其更新位置。 请为我建议解决方法,如何在TextView上检测更新的位置以检测onClickListener。

感谢。

2 个答案:

答案 0 :(得分:1)

可能这样做有点复杂。当您使用View animation system时,行为受到期待。虽然视图被翻译到其他地方,但它们只是存在 绘制那里。从系统的角度来看,它们实际上始终位于您在xml文件中定义的原始位置。如果您想在新地点点击活动,则应使用新的property animation system

答案 1 :(得分:0)

onClickListener无效,因为视图因动画而从原始位置移开。要解决此问题,请在动画下方创建相同的布局,并最初将其“重力”设置为GONE,并在动画完成时将其“重力”设置为“可见”,将动画布局可见性设置为“已过去”。 还要注意动画和原始布局的所有内容都不一样。