gpt4 book ai didi

android - 使用动画设置位置

转载 作者:行者123 更新时间:2023-11-29 00:16:35 25 4
gpt4 key购买 nike

我想在 Android 上设置带有滑动动画的按钮的位置。我该怎么做?

这是我的代码

btnMain.setX(100);
btnMain.setOnClickListener(new View.onClickListener() {

public void onClick(View v) {
btnMain.setX(700);
}
});

最佳答案

这会将您的按钮滑动到水平方向。根据您的需要进行更改

TranslateAnimation anim = new TranslateAnimation(0, 100, 0, 0); //first 0 is start point, 100 is end point horizontal
anim.setDuration(1000); // the argument is in miliseconds i.e 2000 = 2 seconds and so on
yourButton.startAnimation(anim);

您可以通过在 setDuration() 方法中传递不同的时间(以毫秒为单位)来改变动画的速度。

关于android - 使用动画设置位置,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26324155/

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