本文介绍了如何在NotificationBar/LockScreen中构建从API版本10开始支持的音乐控制器?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我正在构建一个音乐播放器应用程序。我想在通知栏中实现媒体控制器。我尝试了一种方法http://www.binpress.com/tutorial/using-android-media-style-notifications-with-media-session-controls/165。但它只支持棒棒糖版本的Android。有没有人有在通知栏中构建媒体控制器的想法?
推荐答案
您必须对MediaStyle使用通知比较:https://developer.android.com/reference/android/support/v7/app/NotificationCompat.MediaStyle.html
Notification noti = new NotificationCompat.Builder()
.setSmallIcon(R.drawable.ic_stat_player)
.setContentTitle("Track title")
.setContentText("Artist - Album")
.setLargeIcon(albumArtBitmap))
.setStyle(new NotificationCompat.MediaStyle()
.setMediaSession(mySession))
.build();
可以在此处找到使用NotificationCompat实现mediaSessionCompat的完整示例:https://bitbucket.org/nonameden/android-universalmusicplayer-compat/src/412465d6605fee26f197cc5615f7da15cc859d4a/mobile/src/main/java/com/example/android/uamp/MediaNotificationManager.java?at=master
这篇关于如何在NotificationBar/LockScreen中构建从API版本10开始支持的音乐控制器?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!