gpt4 book ai didi

Android:使用 setY() 为 View 设置动画

转载 作者:搜寻专家 更新时间:2023-11-01 08:39:49 26 4
gpt4 key购买 nike

我想为一个简单的 View 设置动画,例如一个简单的 TextView 。我想使用翻译动画 View 。

现在我的要求是,我想制作一个方法,例如slide(View v, float position)。这将使 View 动画化并定位到应该动画化的位置。我将从我的代码中的所需位置调用该方法。

为了做到这一点,我尝试了一些东西。我制作了如下的 MyTranslateAnimation 类。

public class MyTranslateAnimation extends Animation {

private View mView;
private final float position;

public MyTranslateAnimation(View view, float position){

mView = view;
this.position = position;
}

@Override
protected void applyTransformation(float interpolatedTime, Transformation t) {
mView.setY(position);
mView.requestLayout();
}

然后我在 MainActivity.java 中创建了一个 textview 并设置了 onTouchListener 然后创建了这个方法 slide() 完成我上面描述的任务。

代码如下:onCreate():

protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);

_root = (ViewGroup)findViewById(R.id.root);

_view = new TextView(this);
_view.setText("TextView!!!!!!!!");

RelativeLayout.LayoutParams layoutParams = new RelativeLayout.LayoutParams(150, 50);
layoutParams.leftMargin = 50;
layoutParams.topMargin = 50;
layoutParams.bottomMargin = -250;
layoutParams.rightMargin = -250;
_view.setLayoutParams(layoutParams);

_view.setOnTouchListener(this);
_root.addView(_view);
}

slide():

private void slide(View view, float position){
Animation animation = new MyTranslateAnimation(view, position);
animation.setInterpolator(new DecelerateInterpolator());
animation.setDuration(200);
animation.start();
}

如下所示,我使用了 slide() 方法:

public boolean onTouch(View view, MotionEvent event) {
final int X = (int) event.getRawX();
final int Y = (int) event.getRawY();
switch (event.getAction() & MotionEvent.ACTION_MASK) {
case MotionEvent.ACTION_DOWN:
RelativeLayout.LayoutParams lParams = (RelativeLayout.LayoutParams) view.getLayoutParams();
_xDelta = X - lParams.leftMargin;
_yDelta = Y - lParams.topMargin;
break;
case MotionEvent.ACTION_UP:
slide(view, 100);
break;
case MotionEvent.ACTION_POINTER_DOWN:
break;
case MotionEvent.ACTION_POINTER_UP:
break;
case MotionEvent.ACTION_MOVE:
RelativeLayout.LayoutParams layoutParams = (RelativeLayout.LayoutParams) view.getLayoutParams();
layoutParams.leftMargin = X - _xDelta;
layoutParams.topMargin = Y - _yDelta;
layoutParams.rightMargin = -250;
layoutParams.bottomMargin = -250;
view.setLayoutParams(layoutParams);
break;
}
_root.invalidate();
return true;
}

此外,我不想为此使用 nineoldandroid 库。非常感谢与此相关的任何帮助。

最佳答案

slide():

public void slide(float position){
ObjectAnimator objectAnimator = ObjectAnimator.ofFloat(overflow.get(), "translationY", position);
objectAnimator.setInterpolator(new DecelerateInterpolator());
objectAnimator.setDuration(200);
objectAnimator.start();
}

关于Android:使用 setY() 为 View 设置动画,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33853911/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com