summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorTony Wickham <twickham@google.com>2016-02-10 16:18:15 -0800
committerTony Wickham <twickham@google.com>2016-02-12 14:06:32 -0800
commit71255bb04fd2af3f27364f1545edc2eec27d27ce (patch)
tree77547f9d347a67bfdcfd1f958496e0d2a23fbb33 /src
parent6362683acb884ec72fe10f1cf394d178d3918a96 (diff)
downloadandroid_packages_apps_Trebuchet-71255bb04fd2af3f27364f1545edc2eec27d27ce.tar.gz
android_packages_apps_Trebuchet-71255bb04fd2af3f27364f1545edc2eec27d27ce.tar.bz2
android_packages_apps_Trebuchet-71255bb04fd2af3f27364f1545edc2eec27d27ce.zip
Clears the widget resize frame when a directional key is pressed.
Also gives focus to the corresponding widget host view in this case. Bug: 27130066 Change-Id: I0a564aa7c509450cd1b9cf259c0a009c68ce3e3b
Diffstat (limited to 'src')
-rw-r--r--src/com/android/launcher3/AppWidgetResizeFrame.java21
1 files changed, 20 insertions, 1 deletions
diff --git a/src/com/android/launcher3/AppWidgetResizeFrame.java b/src/com/android/launcher3/AppWidgetResizeFrame.java
index d86853608..6b7ff886c 100644
--- a/src/com/android/launcher3/AppWidgetResizeFrame.java
+++ b/src/com/android/launcher3/AppWidgetResizeFrame.java
@@ -11,12 +11,15 @@ import android.content.Context;
import android.content.res.Resources;
import android.graphics.Rect;
import android.view.Gravity;
+import android.view.KeyEvent;
+import android.view.View;
import android.widget.FrameLayout;
import android.widget.ImageView;
import com.android.launcher3.accessibility.DragViewStateAnnouncer;
+import com.android.launcher3.util.FocusLogic;
-public class AppWidgetResizeFrame extends FrameLayout {
+public class AppWidgetResizeFrame extends FrameLayout implements View.OnKeyListener {
private static final int SNAP_DURATION = 150;
private static final float DIMMED_HANDLE_ALPHA = 0f;
private static final float RESIZE_THRESHOLD = 0.66f;
@@ -143,6 +146,8 @@ public class AppWidgetResizeFrame extends FrameLayout {
// cells (same if not resized, or different) will be marked as occupied when the resize
// frame is dismissed.
mCellLayout.markCellsAsUnoccupiedForView(mWidgetView);
+
+ setOnKeyListener(this);
}
public boolean beginResizeIfPointInRegion(int x, int y) {
@@ -474,5 +479,19 @@ public class AppWidgetResizeFrame extends FrameLayout {
set.setDuration(SNAP_DURATION);
set.start();
}
+
+ setFocusableInTouchMode(true);
+ requestFocus();
+ }
+
+ @Override
+ public boolean onKey(View v, int keyCode, KeyEvent event) {
+ // Clear the frame and give focus to the widget host view when a directional key is pressed.
+ if (FocusLogic.shouldConsume(keyCode)) {
+ mDragLayer.clearAllResizeFrames();
+ mWidgetView.requestFocus();
+ return true;
+ }
+ return false;
}
}