Home
last modified time | relevance | path

Searched refs:conversationTitle (Results 1 – 1 of 1) sorted by relevance

/packages/apps/Car/Notification/src/com/android/car/notification/template/
DMessageNotificationViewHolder.java111 CharSequence conversationTitle = null; in bindBody() local
117 if (messagingStyle != null) conversationTitle = messagingStyle.getConversationTitle(); in bindBody()
133 if (conversationTitle == null) { in bindBody()
134 conversationTitle = sender != null ? sender.getName() : message.getSender(); in bindBody()
147 if (TextUtils.isEmpty(conversationTitle)) { in bindBody()
148 conversationTitle = extras.getCharSequence(Notification.EXTRA_TITLE); in bindBody()
161 if (!TextUtils.isEmpty(conversationTitle)) { in bindBody()
163 mTitleView.setText(conversationTitle); in bindBody()
192 mBodyView.bindTitleAndMessage(conversationTitle, messageText); in bindBody()