I am creating one notification application.
But application require text instead of icon/image.
Reference image:http://tinypic.com/view.php?pic=23hu5xd&s=6
I am using this way to create notification all of the work fine but require text on status bar.
NotificationCompat.Builder mBuilder = new NotificationCompat.Builder( this).setSmallIcon(R.drawable.ic_launcher) .setContentTitle("hiii") // title for notification .setContentText("Hello word") // message for notification .setAutoCancel(false); // clear notification after click Intent intent = new Intent(this, MainActivity.class); PendingIntent pi = PendingIntent.getActivity(this, 0, intent,Intent.FLAG_ACTIVITY_NEW_TASK); mBuilder.setContentIntent(pi); mNotificationManager.notify(0, mBuilder.build()); Problem: how to set text instead of image. setSmallIcon(R.drawable.ic_launcher)