mirror of
https://github.com/M66B/FairEmail.git
synced 2026-03-27 19:35:10 +01:00
Fixed search interaction
This commit is contained in:
@@ -233,18 +233,10 @@ public class FragmentAnswers extends FragmentBase {
|
||||
searchView.setQuery(searching, true);
|
||||
}
|
||||
|
||||
getViewLifecycleOwner().getLifecycle().addObserver(new LifecycleObserver() {
|
||||
@OnLifecycleEvent(Lifecycle.Event.ON_DESTROY)
|
||||
public void onDestroyed() {
|
||||
menuSearch.collapseActionView();
|
||||
getViewLifecycleOwner().getLifecycle().removeObserver(this);
|
||||
}
|
||||
});
|
||||
|
||||
searchView.setOnQueryTextListener(new SearchView.OnQueryTextListener() {
|
||||
@Override
|
||||
public boolean onQueryTextChange(String newText) {
|
||||
if (getView() != null) {
|
||||
if (getView() != null && menuSearch.isActionViewExpanded()) {
|
||||
searching = newText;
|
||||
adapter.search(newText);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user