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.
我有一个图像(大小为 600 * 400),我的图像视图大小为(300 * 400)。
我想加载此图像并使用动画从左到右(在 5 秒内)自动滚动。
我尝试使用“scrollto”和计时器,但这不是很好。
如何使用动画平滑滚动此图像视图?
非常感谢。
您是否尝试使用处理程序?
Handler handler1 = new Handler(); handler1.postDelayed(new Runnable() { public void run() { "Your code that be executed after 5 seconds" } }, 5000);