How can I set this text line of the notification. my code to simulate what is in the image is
Notification notification = new NotificationCompat.Builder(context)
.setSmallIcon(R.drawable.ic_launcher)
.setContentTitle("Michael")
.setContentText("Dinner tonight?")
.setSubText("let's grab some dinner.Are you free?")
.setLargeIcon(myBitMap)
.addAction(R.drawable.ic_archive, "ARCHIVE", null)
.addAction(R.drawable.ic_reply, "REPLY", null)
.build()
EDIT
or no way , I've to use custom view ?