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.
一切正常。我的应用程序不会从互联网上播放任何音乐。它只是使用原始文件夹播放 50 个文件。为我的应用程序创建线程是必要的吗?播放音乐(使用主线程)会影响来电和通知?
你可以创建一个Service来做一些操作
Service
如果你想通过互联网进行流式传输,实际上你必须在另一个线程中进行,而不是UIThread(Main Thread)因为从API Level 11以上开始在 UI 线程上进行网络操作被阻止,如果你尝试在上面进行,UIThread(MainThread)你会得到一个NetworkOnMainThreadException
UIThread(Main Thread)
API Level 11
UIThread(MainThread)
NetworkOnMainThreadException