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.
在为 Android 应用创建启动画面时,在启动画面可见时运行的代码是否需要异步?如果是这样,为什么?谢谢。
是的,否则在代码完成之前,您的初始图像将永远不会显示。因为 Android 有单一的 UI 线程。如果您在该 UI 线程中执行任何其他操作,则在您的其他代码完成之前无法更改 UI。