mirror of
https://gitlab.linphone.org/BC/public/linphone-android.git
synced 2026-01-23 06:38:09 +00:00
Improved context menu on bubbles in chat conversation
This commit is contained in:
parent
a9e628852d
commit
b1028fdbc5
1 changed files with 7 additions and 0 deletions
|
|
@ -175,6 +175,13 @@ public class ChatEventsAdapter extends ListSelectionAdapter {
|
|||
view.setTag(holder);
|
||||
}
|
||||
|
||||
view.setOnLongClickListener(new View.OnLongClickListener() {
|
||||
@Override
|
||||
public boolean onLongClick(View view) {
|
||||
return false;
|
||||
}
|
||||
});
|
||||
|
||||
holder.eventLayout.setVisibility(View.GONE);
|
||||
holder.bubbleLayout.setVisibility(View.GONE);
|
||||
holder.delete.setVisibility(isEditionEnabled() ? View.VISIBLE : View.GONE);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue