目标App——网易云音乐
- 在线搜索、听歌需要联网, 涉及到了Networking and web services中的诸多内容。在这里我们把着重点放在联网的前提条件,这涉及到Networking basics,如图的每日歌曲推荐就需要联网,否则是不能显示的。
Networking and web services_Networking basics
<u>https://docs.microsoft.com/en-us/windows/uwp/networking/networking-basics</u>
2.当我们退出网易云应用界面时打开任务管理器会发现它默认是后台运行,这样我们就可以离开应用界面听歌做其它事情,这涉及到支持应用的后台任务功能。
Launching, resuming, and background task_Support your app with background tasks
但是在后面的翻阅中,我发现
Play media in the background
<u>https://docs.microsoft.com/en-us/windows/uwp/audio-video-camera/background-audio</u>
比background tasks似乎更贴切
- 在网易云音乐中有查看附近的人这一选项,那么我们肯定会用到自身的定位功能,这里涉及到Get current location
Maps and location_Get current location
<u>https://docs.microsoft.com/en-us/windows/uwp/maps-and-location/get-location</u>
- 网易云音乐本身是一个音乐播放软件,播放的是Audio 故涉及以下内容
Audio, video, and camera_Media playback
<u>https://docs.microsoft.com/en-us/windows/uwp/audio-video-camera/media-playback</u>
- 在本地音乐可以列举、询问文件夹,里面包括已经下载的歌曲和录音文件,这里用的是
Files, fulders, and libraries_Enumerate and query files and folders
<u>https://docs.microsoft.com/en-us/windows/uwp/files/quickstart-listing-files-and-folders</u>
本文只是浅谈……总而言之,APP涉及内容巨多无比,道阻且长。