summaryrefslogtreecommitdiffstats
path: root/src/com/android/launcher3/allapps
diff options
context:
space:
mode:
authorSunny Goyal <sunnygoyal@google.com>2016-01-07 13:50:08 -0800
committerSunny Goyal <sunnygoyal@google.com>2016-01-07 13:51:09 -0800
commite70fb6f8ef03561b7875b872d0efa4ae2a5926af (patch)
treeb1d672b75e2e5d717b72153b860339643308da03 /src/com/android/launcher3/allapps
parent5e9ef1344d2d24061c86cb9dae0cfcd59d551279 (diff)
downloadandroid_packages_apps_Trebuchet-e70fb6f8ef03561b7875b872d0efa4ae2a5926af.tar.gz
android_packages_apps_Trebuchet-e70fb6f8ef03561b7875b872d0efa4ae2a5926af.tar.bz2
android_packages_apps_Trebuchet-e70fb6f8ef03561b7875b872d0efa4ae2a5926af.zip
Accessibility delegate is already set in BubbleTextView constructor. Not need to set it again
Bug: 25948877 Change-Id: I1d301a6169404a78881fa29da6d6bdf2fec8f146
Diffstat (limited to 'src/com/android/launcher3/allapps')
-rw-r--r--src/com/android/launcher3/allapps/AllAppsGridAdapter.java4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/com/android/launcher3/allapps/AllAppsGridAdapter.java b/src/com/android/launcher3/allapps/AllAppsGridAdapter.java
index 38a3e3c3e..748c7491a 100644
--- a/src/com/android/launcher3/allapps/AllAppsGridAdapter.java
+++ b/src/com/android/launcher3/allapps/AllAppsGridAdapter.java
@@ -474,8 +474,6 @@ public class AllAppsGridAdapter extends RecyclerView.Adapter<AllAppsGridAdapter.
icon.setLongPressTimeout(ViewConfiguration.get(parent.getContext())
.getLongPressTimeout());
icon.setFocusable(true);
- icon.setAccessibilityDelegate(
- LauncherAppState.getInstance().getAccessibilityDelegate());
return new ViewHolder(icon);
}
case PREDICTION_ICON_VIEW_TYPE: {
@@ -487,8 +485,6 @@ public class AllAppsGridAdapter extends RecyclerView.Adapter<AllAppsGridAdapter.
icon.setLongPressTimeout(ViewConfiguration.get(parent.getContext())
.getLongPressTimeout());
icon.setFocusable(true);
- icon.setAccessibilityDelegate(
- LauncherAppState.getInstance().getAccessibilityDelegate());
return new ViewHolder(icon);
}
case EMPTY_SEARCH_VIEW_TYPE: