我正在尝试使用Mediaplayer应用。 当触摸播放按钮播放音乐形式的互联网。 我想在触摸播放时,推送通知。 我的通知setSmallIcon无法正常工作。 像图像一样的实例
@Override
public int onStartCommand(Intent intent, int flags, int startId) {
int request_id = (int) System.currentTimeMillis();
Intent noti_intent = new Intent(getApplicationContext(), MotherActivity.class);
PendingIntent pi = PendingIntent.getActivity(getApplicationContext(), request_id,noti_intent,PendingIntent.FLAG_UPDATE_CURRENT);
NotificationManager notificationManager = (NotificationManager) getSystemService(NOTIFICATION_SERVICE);
Notification noti = new Notification.Builder(this)
.setTicker("Hamilelik Rehberi Music Player.")
.setContentTitle("Title")
.setSmallIcon(R.drawable.ic_action_play)
.setContentText("Listeye Dönmek İçin Tıklayınız.")
.setContentIntent(pi)
.getNotification();
noti.flags |= Notification.FLAG_ONGOING_EVENT;
notificationManager.notify(0, noti);
//----------
}
请帮助。 Tahnk你。</ p>