猿问
button向下移动的代码怎么写?
button向下移动的代码怎么写
慕沐7338842
浏览 2076
回答 2
2回答
Mopel
button.animate().translationYBy(500f)//向下移动距离 .setDuration(1*1000)//动画持续时间 .start();
1
0
1
微凉一季
//向下移动,再移动回来。 float curTranslationY = button.getTranslationY(); ObjectAnimator animator = ObjectAnimator.ofFloat(button, "translationY", curTranslationY, 500f, curTranslationY); animator.setDuration(5000); animator.start();
0
0
0
随时随地看视频
慕课网APP
相关分类
Android
我要回答