Notification multiline

后端 未结 5 803
时光取名叫无心
时光取名叫无心 2020-12-28 12:53

How to make a long notification multiline. I am using the below code snippet but its not working:

NotificationCompat.Builder mBuilder = new NotificationCompa         


        
5条回答
  •  感情败类
    2020-12-28 13:42

    In your NotificationCompat.Builder add

    .setStyle(NotificationCompat.BigTextStyle().bigText(body))
    .setContentText(body) 
    

    alnog with .setContentText(body)

提交回复
热议问题