diff --git a/res/layout/hotseat.xml b/res/layout/hotseat.xml index 73c0e523e2..01cd92a63d 100644 --- a/res/layout/hotseat.xml +++ b/res/layout/hotseat.xml @@ -17,6 +17,16 @@ android:theme="@style/HomeScreenElementTheme" xmlns:android="http://schemas.android.com/apk/res/android" xmlns:launcher="http://schemas.android.com/apk/res-auto"> + + + 2dp 80dp 0dp + 24dp 8dp diff --git a/src_ui_overrides/com/android/launcher3/uioverrides/UiFactory.java b/src_ui_overrides/com/android/launcher3/uioverrides/UiFactory.java index 94abcce57e..2f1de7bf64 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), + }; } }