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.
我的 surfraceview 是我的大部分应用程序所在的位置,我想减少它的滞后,因此我被告知将其从 UI 线程中移除。是否可以在 AsyncTask 中运行 SurfaceView?
虽然可以从 AsyncTask 绘制到 SurfaceView 中,但不建议这样做。AsyncTasks 可以在串行队列中运行,因此您可能会阻止其他任务。相反,只需使用线程。SDK 包含一个名为 LunarLander 的示例应用程序,它展示了如何执行此操作。