常规通知不会在android中显示X关闭按钮

时间:2013-02-19 13:32:28

标签: android button notifications default

我使用android.support.v4.app.NotificationCompat.Builder创建了一个通知。通知区域中的通知显示正常。但它没有显示android 4.2上的默认关闭按钮。

http://developer.android.com/reference/android/support/v4/app/NotificationCompat.Builder.html#setOngoing(boolean)

根据docuentation,它是一种常规通知,应该显示X关闭按钮,但它不显示。 使用以下代码:

            mBuilder = new NotificationCompat.Builder(context);
            mBuilder.setSmallIcon(iconId);
            mBuilder.setContentTitle(titleText);
            mBuilder.setContentText(moreinfoText);
            mBuilder.setOngoing(false); //to make it regular
            PendingIntent pintent = 
                       PendingIntent.getActivity(context,noteId,resultIntent,PendingIntent.FLAG_UPDATE_CURRENT);
            mBuilder.setContentIntent(pintent);

            NotificationManager mNotificationManager =
                (NotificationManager) context.getSystemService(Context.NOTIFICATION_SERVICE);
            mNotificationManager.notify(noteId, mBuilder.build());

在Google上搜索但未找到类似的内容。 请建议。

谢谢你的时间!

0 个答案:

没有答案