近期在项目中需要做一个音乐通知栏,需要自定义通知栏布局,
我在xml中编写如下布局:
创建通知代码如下(兼容高低版本):
private Notification buildNotification(String title, String name, String icon, Bitmap bitmap) {
int playButtonResId = isPlaying() ? R.mipmap.ic_media_pause : R.mipmap.ic_media_play;
long mNotificationPostTime = System.currentTimeMillis();
Intent nowPlayingIntent = new Intent(this, MainActivity.class);
nowPlayingIntent.putExtra("tab", IJumpConsts.JUMP_TAB_RING);
nowPlayingIntent.putExtra("from", "PlayService");
PendingIntent clickIntent = PendingIntent.getActivity(this, 0, nowPlayingIntent, PendingIntent.FLAG_UPDATE_CURRENT);
Intent playNext = new Intent(this, PlayService.class);
playNext.putExtra("cmd", CMD_NEXT);