Home
last modified time | relevance | path

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

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/
DSingleLineViewInflater.kt83 if (conversationTextData?.conversationText?.isNotEmpty() == true) { in inflateSingleLineViewModel()
84 contentText = conversationTextData.conversationText in inflateSingleLineViewModel()
117 var conversationText: CharSequence? in loadConversationTextData() variable
125 conversationText = lastMessage.text in loadConversationTextData()
126 if (conversationText == null && lastMessage.isImageMessage()) { in loadConversationTextData()
127 conversationText = findBackUpConversationText(lastMessage, systemUiContext) in loadConversationTextData()
142 conversationText = conversationText, in loadConversationTextData()
205 val conversationText: CharSequence?, constant in com.android.systemui.statusbar.notification.row.SingleLineViewInflater.ConversationTextData
248 var conversationText: CharSequence? = conversationTitle in loadConversationAvatar() variable
265 if (conversationText.isNullOrEmpty()) { in loadConversationAvatar()
[all …]
DHybridConversationNotificationView.java132 CharSequence conversationText = conversationLayout.getConversationText(); in bind() local
133 if (TextUtils.isEmpty(conversationText)) { in bind()
134 conversationText = text; in bind()
136 super.bind(conversationTitle, conversationText, conversationLayout); in bind()
/frameworks/base/core/java/com/android/internal/widget/
DConversationHeaderData.java29 ConversationHeaderData(CharSequence conversationText, in ConversationHeaderData() argument
31 mConversationText = conversationText; in ConversationHeaderData()
DConversationLayout.java603 CharSequence conversationText = mConversationTitle; in computeAndSetConversationAvatarAndName() local
613 if (TextUtils.isEmpty(conversationText)) { in computeAndSetConversationAvatarAndName()
616 conversationText = messagingGroup.getSenderName(); in computeAndSetConversationAvatarAndName()
621 avatarIcon = mPeopleHelper.createAvatarSymbol(conversationText, "", in computeAndSetConversationAvatarAndName()
645 if (TextUtils.isEmpty(conversationText)) { in computeAndSetConversationAvatarAndName()
646 conversationText = mIsOneToOne ? mFallbackChatName : mFallbackGroupChatName; in computeAndSetConversationAvatarAndName()
648 mConversationText.setText(conversationText); in computeAndSetConversationAvatarAndName()
651 mPeopleHelper.maybeHideFirstSenderName(mGroups, mIsOneToOne, conversationText); in computeAndSetConversationAvatarAndName()
682 CharSequence conversationText = conversationHeaderData.getConversationText(); in setConversationAvatarAndNameFromData() local
683 if (TextUtils.isEmpty(conversationText)) { in setConversationAvatarAndNameFromData()
[all …]