Fixing crash during rotation

am: bb702584fa

* commit 'bb702584fa551fab8cffbb0ae5459d9efd16ce2a':
  Fixing crash during rotation
This commit is contained in:
Sunny Goyal
2016-02-11 22:58:20 +00:00
committed by android-build-merger
3 changed files with 12 additions and 5 deletions

View File

@@ -278,11 +278,14 @@ public class AlphabeticalAppsList {
/**
* Sets the sorted list of filtered components.
*/
public void setOrderedFilter(ArrayList<ComponentKey> f) {
public boolean setOrderedFilter(ArrayList<ComponentKey> f) {
if (mSearchResults != f) {
boolean same = mSearchResults != null && mSearchResults.equals(f);
mSearchResults = f;
updateAdapterItems();
return !same;
}
return false;
}
/**