summaryrefslogtreecommitdiffstats
path: root/src_ui_overrides
diff options
context:
space:
mode:
authorTony Wickham <twickham@google.com>2018-03-23 17:34:04 -0700
committerTony Wickham <twickham@google.com>2018-03-23 17:34:04 -0700
commit7c3dd1f14ea4f7a155f1b613ee71a5f0efb5f4bc (patch)
tree640c87233aad12ffc8f4eb6256a64acc6772fd96 /src_ui_overrides
parentf6a8f955ed985cbd6586b825975e9de60c0a18f6 (diff)
downloadandroid_packages_apps_Trebuchet-7c3dd1f14ea4f7a155f1b613ee71a5f0efb5f4bc.tar.gz
android_packages_apps_Trebuchet-7c3dd1f14ea4f7a155f1b613ee71a5f0efb5f4bc.tar.bz2
android_packages_apps_Trebuchet-7c3dd1f14ea4f7a155f1b613ee71a5f0efb5f4bc.zip
Add drag indicator to hotseat
Change-Id: Iad5b08ad290f07c6cdd3c9091e160b5af859859e
Diffstat (limited to 'src_ui_overrides')
-rw-r--r--src_ui_overrides/com/android/launcher3/uioverrides/UiFactory.java5
1 files changed, 4 insertions, 1 deletions
diff --git a/src_ui_overrides/com/android/launcher3/uioverrides/UiFactory.java b/src_ui_overrides/com/android/launcher3/uioverrides/UiFactory.java
index 94abcce57..2f1de7bf6 100644
--- a/src_ui_overrides/com/android/launcher3/uioverrides/UiFactory.java
+++ b/src_ui_overrides/com/android/launcher3/uioverrides/UiFactory.java
@@ -22,6 +22,7 @@ import android.view.View.AccessibilityDelegate;
import com.android.launcher3.Hotseat;
import com.android.launcher3.Launcher;
import com.android.launcher3.LauncherStateManager.StateHandler;
+import com.android.launcher3.R;
import com.android.launcher3.util.TouchController;
public class UiFactory {
@@ -49,6 +50,8 @@ public class UiFactory {
public static void onTrimMemory(Launcher launcher, int level) { }
public static View[] getHotseatExtraContent(Hotseat hotseat) {
- return new View[0];
+ return new View[] {
+ hotseat.findViewById(R.id.drag_indicator),
+ };
}
}