通知のカスタムタイトルを設定したいのですが、常にプロジェクト名を小文字に設定しています。以下は私のコードです。このコードで何が間違っていますか?親切に私を助けてください。NotificationManagerのタイトルを設定するには?
NotificationCompat.Builder notificationBuilder = new NotificationCompat.Builder(this)
.setSmallIcon(R.mipmap.ic_launcher)
.setContentTitle("My Notification")
.setContentText(messageBody)
.setAutoCancel(true)
.setSound(defaultSoundUri)
.setContentIntent(pendingIntent);
NotificationManager notificationManager =
(NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);
notificationManager.notify(0 /* ID of notification */, notificationBuilder.build());
通知のタイトルを変更する場合は、 –
"My Notification"は小文字で表示したいと思っていますが、私のアプリケーション名は小文字で表示されます。 @SohailZahid – Furqan