mirror of
https://github.com/nextcloud/talk-android
synced 2025-06-21 20:49:36 +01:00
Fix contacts
Signed-off-by: Mario Danic <mario@lovelyhq.com>
This commit is contained in:
parent
4f7fcd3912
commit
8e652fdb1c
@ -265,27 +265,20 @@ class UserItem(
|
||||
adapter: FlexibleAdapter<*>
|
||||
) : FlexibleViewHolder(view, adapter) {
|
||||
|
||||
@JvmField
|
||||
@BindView(R.id.name_text)
|
||||
var contactDisplayName: EmojiTextView? = null
|
||||
@JvmField
|
||||
@BindView(R.id.avatarImageView)
|
||||
var avatarImageView: ImageView? = null
|
||||
@JvmField
|
||||
@BindView(R.id.secondary_text)
|
||||
var contactMentionId: EmojiTextView? = null
|
||||
@JvmField
|
||||
@BindView(R.id.voiceOrSimpleCallImageView)
|
||||
var voiceOrSimpleCallImageView: ImageView? = null
|
||||
@JvmField
|
||||
@BindView(R.id.videoCallImageView)
|
||||
var videoCallImageView: ImageView? = null
|
||||
@JvmField
|
||||
@BindView(R.id.checkedImageView)
|
||||
var checkedImageView: ImageView? = null
|
||||
|
||||
init {
|
||||
ButterKnife.bind(this, view)
|
||||
contactDisplayName = view.findViewById(R.id.name_text)
|
||||
avatarImageView = view.findViewById(R.id.avatarImageView)
|
||||
contactMentionId = view.findViewById(R.id.secondary_text)
|
||||
voiceOrSimpleCallImageView = view.findViewById(R.id.voiceOrSimpleCallImageView)
|
||||
videoCallImageView = view.findViewById(R.id.videoCallImageView)
|
||||
checkedImageView = view.findViewById(R.id.checkedImageView)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user