Charles
Charles
If I submitted the query with search button on keyboard, the suggestion is added to the history list. However, if I submitted the query with `searchView.setQuery(suggestion, true)`, the history list...
Thanks for checking it. Different from your example: ``` @Override protected void onPause() { super.onPause(); searchView.clearSuggestions(); } ``` ``` @Override protected void onResume() { super.onResume(); searchView.activityResumed(); String[] arr = getResources().getStringArray(R.array.suggestions);...
Can I manage history by myself, e.g., add history, save and load history?