关于通知的一些问题

时间:2014-12-03 09:55:08

标签: android android-notifications

我有几个问题。 1.当我发出取代旧的通知时。 我需要增加一个反通知。

  1. 当您点击通知打开某个片段时如何做到这一点?

    private static void generateNotification(Context context,String message,int type){

        String title = null;
        int icon = R.drawable.ic_stat_gcm;
        long when = System.currentTimeMillis();
        NotificationManager notificationManager = (NotificationManager)context.getSystemService(Context.NOTIFICATION_SERVICE);
        Notification notification = new Notification(icon, message, when);
        title = context.getString(R.string.app_name);
        Intent notificationIntent = new Intent(context, MainActivity.class);
        notificationIntent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP | Intent.FLAG_ACTIVITY_SINGLE_TOP);
        PendingIntent intent = PendingIntent.getActivity(context, 0, notificationIntent, 0);
        notification.setLatestEventInfo(context, title, message, intent);
        notification.flags |= Notification.FLAG_AUTO_CANCEL;
        notificationManager.notify(0, notification);
    
    }
    

2 个答案:

答案 0 :(得分:1)

  

当您点击通知打开某个片段时如何做到这一点?

您无法直接打开Fragment。您需要打开Activity,然后才能使用Fragment

答案 1 :(得分:0)

如果通知在用户上次打开n之前计算,则计算该数字,并通过这种方式增加计数器。

notification.number += count(here is number of notification);`

由于