mirror of
https://github.com/nextcloud/talk-android
synced 2025-06-21 12:39:58 +01:00
fix autocomplete mentions
Signed-off-by: Marcel Hibbe <dev@mhibbe.de>
This commit is contained in:
parent
e94cb3b9ac
commit
6a9dea7522
@ -311,6 +311,7 @@ public class UserItem extends AbstractFlexibleItem<UserItem.UserItemViewHolder>
|
|||||||
|
|
||||||
@BindView(R.id.name_text)
|
@BindView(R.id.name_text)
|
||||||
public EmojiTextView contactDisplayName;
|
public EmojiTextView contactDisplayName;
|
||||||
|
@Nullable
|
||||||
@BindView(R.id.conversation_info_participant_avatar)
|
@BindView(R.id.conversation_info_participant_avatar)
|
||||||
public SimpleDraweeView participantAvatar;
|
public SimpleDraweeView participantAvatar;
|
||||||
@Nullable
|
@Nullable
|
||||||
@ -322,10 +323,13 @@ public class UserItem extends AbstractFlexibleItem<UserItem.UserItemViewHolder>
|
|||||||
@Nullable
|
@Nullable
|
||||||
@BindView(R.id.checkedImageView)
|
@BindView(R.id.checkedImageView)
|
||||||
ImageView checkedImageView;
|
ImageView checkedImageView;
|
||||||
|
@Nullable
|
||||||
@BindView(R.id.conversation_info_participant_emoji)
|
@BindView(R.id.conversation_info_participant_emoji)
|
||||||
com.vanniktech.emoji.EmojiEditText participantEmoji;
|
com.vanniktech.emoji.EmojiEditText participantEmoji;
|
||||||
|
@Nullable
|
||||||
@BindView(R.id.conversation_info_participant_online_state)
|
@BindView(R.id.conversation_info_participant_online_state)
|
||||||
ImageView participantOnlineStateImage;
|
ImageView participantOnlineStateImage;
|
||||||
|
@Nullable
|
||||||
@BindView(R.id.conversation_info_status_message)
|
@BindView(R.id.conversation_info_status_message)
|
||||||
EmojiTextView statusMessage;
|
EmojiTextView statusMessage;
|
||||||
|
|
||||||
|
@ -35,7 +35,7 @@
|
|||||||
android:layout_marginStart="@dimen/activity_horizontal_margin">
|
android:layout_marginStart="@dimen/activity_horizontal_margin">
|
||||||
|
|
||||||
<com.facebook.drawee.view.SimpleDraweeView
|
<com.facebook.drawee.view.SimpleDraweeView
|
||||||
android:id="@+id/simple_drawee_view"
|
android:id="@+id/conversation_info_participant_avatar"
|
||||||
android:layout_width="@dimen/avatar_size"
|
android:layout_width="@dimen/avatar_size"
|
||||||
android:layout_height="@dimen/avatar_size"
|
android:layout_height="@dimen/avatar_size"
|
||||||
app:roundAsCircle="true" />
|
app:roundAsCircle="true" />
|
||||||
|
Loading…
Reference in New Issue
Block a user