mirror of
https://gitlab.linphone.org/BC/public/linphone-android.git
synced 2026-01-23 06:38:09 +00:00
Fix menu context in chat view
This commit is contained in:
parent
4e5b381fa7
commit
f3b35a4135
1 changed files with 7 additions and 0 deletions
|
|
@ -183,6 +183,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.separatorLayout.setVisibility(i == 0 ? View.GONE : View.VISIBLE); // Hide separator if first item in list
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue