Loading src/com/android/launcher3/LauncherAppWidgetHostView.java +11 −3 Original line number Diff line number Diff line Loading @@ -36,6 +36,7 @@ public class LauncherAppWidgetHostView extends AppWidgetHostView implements Touc LayoutInflater mInflater; private CheckLongPressHelper mLongPressHelper; private StylusEventHelper mStylusEventHelper; private Context mContext; private int mPreviousOrientation; private DragLayer mDragLayer; Loading @@ -46,6 +47,7 @@ public class LauncherAppWidgetHostView extends AppWidgetHostView implements Touc super(context); mContext = context; mLongPressHelper = new CheckLongPressHelper(this); mStylusEventHelper = new StylusEventHelper(this); mInflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE); mDragLayer = ((Launcher) context).getDragLayer(); setAccessibilityDelegate(LauncherAppState.getInstance().getAccessibilityDelegate()); Loading Loading @@ -89,11 +91,17 @@ public class LauncherAppWidgetHostView extends AppWidgetHostView implements Touc return true; } // Watch for longpress events at this level to make sure // users can always pick up this widget // Watch for longpress or stylus button press events at this level to // make sure users can always pick up this widget if (mStylusEventHelper.checkAndPerformStylusEvent(ev)) { mLongPressHelper.cancelLongPress(); return true; } switch (ev.getAction()) { case MotionEvent.ACTION_DOWN: { if (!mStylusEventHelper.inStylusButtonPressed()) { mLongPressHelper.postCheckForLongPress(); } mDragLayer.setTouchCompleteListener(this); break; } Loading Loading
src/com/android/launcher3/LauncherAppWidgetHostView.java +11 −3 Original line number Diff line number Diff line Loading @@ -36,6 +36,7 @@ public class LauncherAppWidgetHostView extends AppWidgetHostView implements Touc LayoutInflater mInflater; private CheckLongPressHelper mLongPressHelper; private StylusEventHelper mStylusEventHelper; private Context mContext; private int mPreviousOrientation; private DragLayer mDragLayer; Loading @@ -46,6 +47,7 @@ public class LauncherAppWidgetHostView extends AppWidgetHostView implements Touc super(context); mContext = context; mLongPressHelper = new CheckLongPressHelper(this); mStylusEventHelper = new StylusEventHelper(this); mInflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE); mDragLayer = ((Launcher) context).getDragLayer(); setAccessibilityDelegate(LauncherAppState.getInstance().getAccessibilityDelegate()); Loading Loading @@ -89,11 +91,17 @@ public class LauncherAppWidgetHostView extends AppWidgetHostView implements Touc return true; } // Watch for longpress events at this level to make sure // users can always pick up this widget // Watch for longpress or stylus button press events at this level to // make sure users can always pick up this widget if (mStylusEventHelper.checkAndPerformStylusEvent(ev)) { mLongPressHelper.cancelLongPress(); return true; } switch (ev.getAction()) { case MotionEvent.ACTION_DOWN: { if (!mStylusEventHelper.inStylusButtonPressed()) { mLongPressHelper.postCheckForLongPress(); } mDragLayer.setTouchCompleteListener(this); break; } Loading