在我的Android应用程序上,为什么我的通知只能听到声音和振动,但不能显示在状态栏上



我有一种方法可以在有新消息进来时在我的服务类中显示通知。 但是当它被调用时,它可以工作,但只能听到声音和振动,看不到它显示在状态栏上。 我把方法放在一个演示应用程序上,它运行良好。一些身体可以帮助我,谢谢

这段代码对我有用

  private static void generateNotification(Context context, String message) {
    int icon = R.drawable.ic_launcher;
    long when = System.currentTimeMillis();
    NotificationManager notificationManager = (NotificationManager)
            context.getSystemService(Context.NOTIFICATION_SERVICE);
    Notification notification = new Notification(icon, message, when);
    String title = context.getString(R.string.app_name);
    Intent notificationIntent = new Intent(context, <nameofactivity>.class);
    // set intent so it does not start a new activity
    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;
    // Play default notification sound
    notification.defaults |= Notification.DEFAULT_SOUND;
    // Vibrate if vibrate is enabled
    notification.defaults |= Notification.DEFAULT_VIBRATE;
    notificationManager.notify(0, notification);      
  }

相关内容

最新更新