mirror of
https://github.com/szkolny-eu/szkolny-android.git
synced 2025-06-12 05:30:48 +02:00
[Messages/Compose] Add dropdown icon to show all recipient categories. Add before-send confirmation dialog.
This commit is contained in:
@ -1078,6 +1078,22 @@ public class NachoTextView extends MultiAutoCompleteTextView implements TextWatc
|
||||
return chipAndTokenValues;
|
||||
}
|
||||
|
||||
public boolean ignoreThreshold = false;
|
||||
|
||||
@Override
|
||||
public boolean enoughToFilter() {
|
||||
return ignoreThreshold || super.enoughToFilter();
|
||||
}
|
||||
|
||||
public OnDismissListener onDismissListener = null;
|
||||
|
||||
@Override
|
||||
public void dismissDropDown() {
|
||||
if (onDismissListener != null)
|
||||
onDismissListener.onDismiss();
|
||||
super.dismissDropDown();
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
try {
|
||||
|
Reference in New Issue
Block a user