为什么不显示android通知文本?

时间:2016-04-20 09:25:37

标签: android

我已经编写了以下通知代码,我可以看到通知的通知和标题,但文本不可见。我尝试了很多次静态值,但仍然没有得到什么问题。请帮助我,提前谢谢。

private void messagenotification(String msg, String nextid) {


    SharedPreferences settings = getSharedPreferences(PREFS_NAME, 0);
    SharedPreferences.Editor editor = settings.edit();
    editor.putString("id", nextid  ).apply();

    Intent intent = new Intent(this, NextActivity.class);
    intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
    PendingIntent pendingIntent = PendingIntent.getActivity(this, 0 /* Request code */, intent,
            PendingIntent.FLAG_ONE_SHOT);

    Uri defaultSoundUri = RingtoneManager.getDefaultUri(RingtoneManager.TYPE_NOTIFICATION);
    NotificationCompat.Builder notificationBuilder = (NotificationCompat.Builder) new NotificationCompat.Builder(this)
            .setSmallIcon(R.mipmap.blue)
            .setLargeIcon(BitmapFactory.decodeResource(getResources(), R.mipmap.blue))
            .setContentTitle("Chat")
            .setStyle(new NotificationCompat.BigTextStyle().bigText(msg))
            .setAutoCancel(true)
            .setSound(defaultSoundUri)
            .setContentIntent(pendingIntent);



    NotificationManager notificationManager =
            (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);

    notificationManager.notify(0 /* ID of notification */, notificationBuilder.build());
}

1 个答案:

答案 0 :(得分:6)

似乎您在notificationBuilder上忘记了.setContentText("Example")

文档here