Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的应用程序很简单:一些 ImageViews 是在布局之外随机创建的,然后它们会直接进入布局并在到达另一侧时消失。这个想法很简单,但我做不到。请帮我!
一个可能的解决方案:
TranslateAnimation tA=new TranslateAnimation(randomX,randomY,endX,endY); image.setAnimation(tA); tA.start();