Force ConversationItem to intercept all touch events when in multiselect mode.
This commit is contained in:
parent
962d943a22
commit
7a1122b3f7
1 changed files with 5 additions and 1 deletions
|
@ -341,7 +341,11 @@ public final class ConversationItem extends RelativeLayout implements BindableCo
|
||||||
lastYDownRelativeToThis = ev.getY();
|
lastYDownRelativeToThis = ev.getY();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (batchSelected.isEmpty()) {
|
||||||
return super.onInterceptTouchEvent(ev);
|
return super.onInterceptTouchEvent(ev);
|
||||||
|
} else {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|
Loading…
Add table
Reference in a new issue