我在用android工作室。我想添加带有通知数的消息。为什么我运行应用程序时屏幕上没有内容信息?
>

private int i = 0;

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
}

public void notyfikacja(View view) {

    Intent intent = new Intent(this, SecondActivity.class);
    PendingIntent pendingIntent = PendingIntent.getActivity(this, 0, intent, 0);

    NotificationCompat.Builder builder = new NotificationCompat.Builder(this);
    builder
            .setSmallIcon(android.R.drawable.arrow_up_float)
            .setContentInfo("You have"+  ++i + "messages" )
            .setContentText("ContentText")
            .setContentTitle("ContentTitle")
            .setAutoCancel(true)
            .setContentIntent(pendingIntent);

    Notification notification = builder.build();
    NotificationManagerCompat.from(this).notify(0, notification);
}

我加上Notification Screeshot

最佳答案

我不知道为什么setContentInfo不起作用。可能是因为你在吃牛轧糖?无论如何,根据文档,建议使用setSubText(CharSequence)而不是setContentInfo(CharSequence info)
From Doc
此方法在API级别24中已弃用。请改用setsubtext(charsequence)设置标题中的文本。对于以低于n的版本为目标的旧版应用程序,此字段仍将显示,但以子文本为准。

08-18 05:10