通知setSmallIcon无法正常使用

时间:2013-11-27 14:56:18

标签: android

我正在尝试使用Mediaplayer应用。 当触摸播放按钮播放音乐形式的互联网。 我想在触摸播放时,推送通知。 我的通知setSmallIcon无法正常工作。 像图像一样的实例

enter image description here

         @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>

0 个答案:

没有答案