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.
从理论上讲,在开始我的应用程序之前,从 MyMain 类(扩展的那个Activity)中创建新线程更好还是我们通常在 MyService 类中创建它(扩展的那个Service)
Activity
Service
这取决于。如果您需要使用 UI,请从活动中启动一个线程。如果您需要在后台工作,请在服务中进行。通常,您不需要使用“原始”线程——AsyncTask用于活动和IntentService服务。
AsyncTask
IntentService