Scroll to first item when search term changes

Fixes #2126
This commit is contained in:
mueller-ma 2021-06-13 13:57:03 +02:00 committed by Hans-Christoph Steiner
parent 0d8018b10e
commit d7fb1e0044

View File

@ -266,6 +266,7 @@ public class AppListActivity extends AppCompatActivity implements LoaderManager.
public void onSearchTermsChanged(@Nullable String category, @NonNull String searchTerms) {
this.category = category;
this.searchTerms = searchTerms;
appView.scrollToPosition(0);
getSupportLoaderManager().restartLoader(0, null, this);
if (TextUtils.isEmpty(searchTerms)) {
removeSavedSearchSettings(this, SEARCH_TERMS_KEY);