我有一个FrameLayout,我在其中放置了两个相同的TextView。 我希望能够将第一个视图翻译到左侧(我已经完成并且像魅力一样工作)。但是我希望能够单击它下面的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) {
}
}
答案 0 :(得分:4)
你在标签中有ICS,所以我认为你的目标是什么。在这种情况下,您使用的Animation
对象基本上已弃用,而支持Animator类。旧的做法只会移动View
的视觉位置,而物理位置保持不变。你必须通过操纵视图的边距来自己移动它。另一方面,使用ObjectAnimator
可以让物理移动对象及其可视组件。
http://android-developers.blogspot.com/2011/05/introducing-viewpropertyanimator.html