How to slide an ImageView from left to right smoothly in Android?

前端 未结 7 1653
小鲜肉
小鲜肉 2021-02-01 21:37

I need to make an ImageView slide from left to right of the screen with a smooth animation (I want the ImageView to be visible during the transition) I

7条回答
  •  挽巷
    挽巷 (楼主)
    2021-02-01 21:45

    TranslateAnimation animate = new TranslateAnimation(0, -view.getWidth(), 0, 0);
    animate.setDuration(500);
    animate.setFillAfter(true);
    view.startAnimation(animate);
    

提交回复
热议问题