summaryrefslogtreecommitdiffstats
path: root/src/com/android/launcher3/WorkspaceStateTransitionAnimation.java
diff options
context:
space:
mode:
authorSunny Goyal <sunnygoyal@google.com>2018-05-09 08:42:24 -0700
committerSunny Goyal <sunnygoyal@google.com>2018-05-09 12:39:30 -0700
commitef39540dde69f9acf718966efa7bf3475798223e (patch)
treeca78ee2c3dd8428735a8d88eb2652d8e5e337c6f /src/com/android/launcher3/WorkspaceStateTransitionAnimation.java
parent578890ad93b566e9ba6380fe1349b0dad7d93427 (diff)
downloadandroid_packages_apps_Trebuchet-ef39540dde69f9acf718966efa7bf3475798223e.tar.gz
android_packages_apps_Trebuchet-ef39540dde69f9acf718966efa7bf3475798223e.tar.bz2
android_packages_apps_Trebuchet-ef39540dde69f9acf718966efa7bf3475798223e.zip
Adding a carent in the scrim
> Caret is only visible when the accessibility is enabled > It is visible in NOTMAL and OVERVIEW state and moves out of the scrim along with the scrim. > Acts as an accessible target for various options Bug: 78172350 Bug: 79215734 Change-Id: I8a968b67e36901859649546295f6491d49cc9ce9
Diffstat (limited to 'src/com/android/launcher3/WorkspaceStateTransitionAnimation.java')
-rw-r--r--src/com/android/launcher3/WorkspaceStateTransitionAnimation.java5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/com/android/launcher3/WorkspaceStateTransitionAnimation.java b/src/com/android/launcher3/WorkspaceStateTransitionAnimation.java
index 8d3d459cc..157dc1bf3 100644
--- a/src/com/android/launcher3/WorkspaceStateTransitionAnimation.java
+++ b/src/com/android/launcher3/WorkspaceStateTransitionAnimation.java
@@ -18,7 +18,6 @@ package com.android.launcher3;
import static com.android.launcher3.LauncherAnimUtils.DRAWABLE_ALPHA;
import static com.android.launcher3.LauncherAnimUtils.SCALE_PROPERTY;
-import static com.android.launcher3.LauncherState.DRAG_HANDLE_INDICATOR;
import static com.android.launcher3.LauncherState.HOTSEAT_ICONS;
import static com.android.launcher3.LauncherState.HOTSEAT_SEARCH_BOX;
import static com.android.launcher3.anim.PropertySetter.NO_ANIM_PROPERTY_SETTER;
@@ -90,10 +89,6 @@ public class WorkspaceStateTransitionAnimation {
(elements & HOTSEAT_SEARCH_BOX) != 0 ? 1 : 0,
pageAlphaProvider.interpolator);
- propertySetter.setViewAlpha(mLauncher.getDragHandleIndicator(),
- (elements & DRAG_HANDLE_INDICATOR) != 0 ? 1 : 0,
- pageAlphaProvider.interpolator);
-
// Set scrim
propertySetter.setFloat(ViewScrim.get(mWorkspace), ViewScrim.PROGRESS,
state.getWorkspaceScrimAlpha(mLauncher), Interpolators.LINEAR);