娱乐音乐播放器应用后在哪里设置媒体样式通知栏
Where set media style notification bar after recreation musicplayer app
我正在编写音乐播放器应用程序。更改主题颜色后,我重新创建 MainAcitivity。恢复完成后,我的播放器继续播放上次播放的曲目。
MainActivity.getInstance().recreate();
我的应用程序使用 MediaBrowserService。在我的应用程序再次可供用户使用后,Pause/Play 按钮应设置为暂停,并应设置进一步的操作 - 作为媒体样式通知。
我认为,由于捆绑对象 savedInstanceState,玩家继续播放 - 但我没有在那里设置任何对象。
重新设置通知栏状态的正确位置在哪里?
我使用本手册实现了 MediaBrowserService。
https://www.sitepoint.com/a-step-by-step-guide-to-building-an-android-audio-player-app/
感谢您的帮助。
通过设置服务启动 onStart() 方法解决 ->
Intent intent = new Intent(getmContext(),BackgroundAudioService.class); startService(intent);
我正在编写音乐播放器应用程序。更改主题颜色后,我重新创建 MainAcitivity。恢复完成后,我的播放器继续播放上次播放的曲目。
MainActivity.getInstance().recreate();
我的应用程序使用 MediaBrowserService。在我的应用程序再次可供用户使用后,Pause/Play 按钮应设置为暂停,并应设置进一步的操作 - 作为媒体样式通知。
我认为,由于捆绑对象 savedInstanceState,玩家继续播放 - 但我没有在那里设置任何对象。
重新设置通知栏状态的正确位置在哪里?
我使用本手册实现了 MediaBrowserService。 https://www.sitepoint.com/a-step-by-step-guide-to-building-an-android-audio-player-app/
感谢您的帮助。
通过设置服务启动 onStart() 方法解决 ->
Intent intent = new Intent(getmContext(),BackgroundAudioService.class); startService(intent);