1

2つの同一のTextViewを配置したFrameLayoutがあります。最初のビューを左に翻訳できるようにしたいと思います(これは私が行っており、魅力のように機能しています)。ただし、その下にあるTextViewをクリックしてアクションを実行できるようにしたいと思います。

下部のTextViewをクリックしようとすると、代わりに上部のTextViewが再度クリックされます。これは、アニメーションのレンダリング方法と実際のx、y位置の変更が有効にならないためだと感じています。

これは私がこれまでに持っているものです。

<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android" 
    android:layout_width="fill_parent"
    android:layout_height="fill_parent" >
    <TextView
        android:layout_width="fill_parent"
        android:layout_height="50dip"
        android:text="@string/hello" 
        android:id="@+id/unbutt"
        android:gravity="right|center_vertical"
        />
    <TextView
        android:layout_width="fill_parent"
        android:layout_height="50dip"
        android:text="@string/hello" 
        android:id="@+id/butt" />

</FrameLayout>

コード:

import android.app.Activity;
import android.os.Bundle;
import android.view.View;
import android.view.View.OnClickListener;
import android.view.animation.Animation;
import android.view.animation.Animation.AnimationListener;
import android.view.animation.TranslateAnimation;
import android.widget.TextView;

public class Main extends Activity implements AnimationListener, OnClickListener
{
    /** Called when the activity is first created. */

    private class BottomViewClick implements OnClickListener
{

    @Override
    public void onClick(View v) {
        Toast.makeText(v.getContext(), "Second Click", 5).show();
    }

}

@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.main);

    TextView tv = (TextView)findViewById(R.id.butt); 
    tv.setBackgroundColor(0xffb71700);
    tv.setOnClickListener(this);

    TextView tv2 = (TextView)findViewById(R.id.unbutt); 
    tv2.setBackgroundColor(0xffb700ff);
    tv2.setOnClickListener(new BottomViewClick());

}

    private boolean revealed = false;

    @Override
    public void onClick(View v) {
        Animation a ;
        if(!revealed)
            a = new TranslateAnimation(0f, -200f, 0f, 0f);
        else
            a = new TranslateAnimation(-200f, 0f, 0f, 0f);
        a.setDuration(500);
        a.setFillAfter(true);
        a.setAnimationListener(this);
        v.startAnimation(a);
    }

    @Override
    public void onAnimationEnd(Animation animation) {
        if(revealed)
            revealed = false;
        else
            revealed = true;
    }

    @Override
    public void onAnimationRepeat(Animation animation) {
    }

    @Override
    public void onAnimationStart(Animation animation) {
    }
}
4

1 に答える 1

4

タグにICSが含まれているので、それがターゲットであると思います。その場合、Animation使用しているオブジェクトは基本的に非推奨になり、Animatorクラスが優先されます。Viewそれを行う古い方法は、物理的な場所が同じままである間、視覚的な場所を移動するだけです。ビューの余白を操作して、自分で移動する必要があります。ObjectAnimator一方、を使用すると、オブジェクトをそのビジュアルコンポーネントと一緒に物理的に移動できます。

http://android-developers.blogspot.com/2011/05/introducing-viewpropertyanimator.html

于 2012-02-07T21:34:24.427 に答える