summaryrefslogtreecommitdiffstats
path: root/src/com/android/launcher3/allapps/AllAppsRecyclerView.java
diff options
context:
space:
mode:
authorWinson <winsonc@google.com>2015-09-03 11:46:11 -0700
committerWinson Chung <winsonc@google.com>2015-09-03 18:49:43 +0000
commit646c236ad283c44e41747176fe1017d619b92d5a (patch)
tree6aa893a2ed6f629ba3dfee6ea500c3e2ad6065a6 /src/com/android/launcher3/allapps/AllAppsRecyclerView.java
parent7412c3cb005c3b3315ddb276386e2115f742d2e0 (diff)
downloadandroid_packages_apps_Trebuchet-646c236ad283c44e41747176fe1017d619b92d5a.tar.gz
android_packages_apps_Trebuchet-646c236ad283c44e41747176fe1017d619b92d5a.tar.bz2
android_packages_apps_Trebuchet-646c236ad283c44e41747176fe1017d619b92d5a.zip
Disabling fast scroller when searching apps.
- There is no meaningful order for the app search results since they are ranked. Bug: 23759082 Change-Id: I0aa4eea68136ea3ecef2a80b20ba7b0d46f0653b
Diffstat (limited to 'src/com/android/launcher3/allapps/AllAppsRecyclerView.java')
-rw-r--r--src/com/android/launcher3/allapps/AllAppsRecyclerView.java7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/com/android/launcher3/allapps/AllAppsRecyclerView.java b/src/com/android/launcher3/allapps/AllAppsRecyclerView.java
index 2f66e2cad..10d10f11b 100644
--- a/src/com/android/launcher3/allapps/AllAppsRecyclerView.java
+++ b/src/com/android/launcher3/allapps/AllAppsRecyclerView.java
@@ -431,6 +431,13 @@ public class AllAppsRecyclerView extends BaseRecyclerView
}
}
+ @Override
+ protected boolean supportsFastScrolling() {
+ // Only allow fast scrolling when the user is not searching, since the results are not
+ // grouped in a meaningful order
+ return !mApps.hasFilter();
+ }
+
/**
* Returns the scrollY for the given position in the adapter.
*/