Android Wear - 通知标题格式

时间:2014-08-04 16:23:09

标签: android android-notifications wear-os

我正在尝试将Android Wear通知的标题显示为超过2行(或更多行)而不是总是1. Here是我想要的示例,但是here是它现在在做什么我正在使用

NotificationCompat.Builder.setContentTitle(CharSequence title)

记录在案here。我已经尝试插入换行符和/或回车符,它适用于我的通知中的文本,但不适用于标题。我需要一些方法让标题自动换行,或者某种方式让它识别换行符。 感谢

1 个答案:

答案 0 :(得分:1)

我认为大文字是你想要的。

Notification notif = new Notification.Builder(mContext)
     .setContentTitle("New mail from " + sender.toString())
     .setContentText(subject)
     .setSmallIcon(R.drawable.new_mail)
     .setLargeIcon(aBitmap)
     .setStyle(new Notification.BigTextStyle()
         .setBigContentTitle(aVeryLongString))
     .build();