blob: ebe55ab783e02cc397a021b98d16662392f7b130 [file] [log] [blame]
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001/*
2 * Copyright (C) 2009 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
Daniel Sandler325dc232013-06-05 22:57:57 -040017package com.android.launcher3;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080018
The Android Open Source Project7376fae2009-03-11 12:11:58 -070019import android.appwidget.AppWidgetHostView;
Adam Cohen59400422014-03-05 18:07:04 -080020import android.appwidget.AppWidgetProviderInfo;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080021import android.content.Context;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080022import android.view.LayoutInflater;
23import android.view.MotionEvent;
24import android.view.View;
Jason Monk02dd7ae2014-04-15 15:23:31 -040025import android.view.ViewConfiguration;
Winson Chung97d85d22011-04-13 11:27:36 -070026import android.view.ViewGroup;
Adam Cohen06dff352012-06-01 17:17:08 -070027import android.widget.RemoteViews;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080028
Adam Cohenb0f3d742013-10-08 19:16:14 -070029import com.android.launcher3.DragLayer.TouchCompleteListener;
30
The Android Open Source Project31dd5032009-03-03 19:32:27 -080031/**
32 * {@inheritDoc}
33 */
Adam Cohenb0f3d742013-10-08 19:16:14 -070034public class LauncherAppWidgetHostView extends AppWidgetHostView implements TouchCompleteListener {
Sunny Goyalff572272014-07-23 13:58:07 -070035
36 LayoutInflater mInflater;
37
Winson Chung88f33452012-02-23 15:23:44 -080038 private CheckLongPressHelper mLongPressHelper;
Adam Cohen06dff352012-06-01 17:17:08 -070039 private Context mContext;
40 private int mPreviousOrientation;
Adam Cohenb0f3d742013-10-08 19:16:14 -070041 private DragLayer mDragLayer;
Michael Jurka99b6a5b2011-01-07 15:37:17 -080042
Jason Monk02dd7ae2014-04-15 15:23:31 -040043 private float mSlop;
44
The Android Open Source Project7376fae2009-03-11 12:11:58 -070045 public LauncherAppWidgetHostView(Context context) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -080046 super(context);
Adam Cohen06dff352012-06-01 17:17:08 -070047 mContext = context;
Winson Chung88f33452012-02-23 15:23:44 -080048 mLongPressHelper = new CheckLongPressHelper(this);
The Android Open Source Project31dd5032009-03-03 19:32:27 -080049 mInflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
Adam Cohenb0f3d742013-10-08 19:16:14 -070050 mDragLayer = ((Launcher) context).getDragLayer();
The Android Open Source Project31dd5032009-03-03 19:32:27 -080051 }
Adam Cohen41d5d6d2011-05-31 15:52:28 -070052
The Android Open Source Project31dd5032009-03-03 19:32:27 -080053 @Override
54 protected View getErrorView() {
The Android Open Source Project7376fae2009-03-11 12:11:58 -070055 return mInflater.inflate(R.layout.appwidget_error, this, false);
The Android Open Source Project31dd5032009-03-03 19:32:27 -080056 }
57
Adam Cohen59400422014-03-05 18:07:04 -080058 public void updateLastInflationOrientation() {
59 mPreviousOrientation = mContext.getResources().getConfiguration().orientation;
60 }
61
Adam Cohen06dff352012-06-01 17:17:08 -070062 @Override
63 public void updateAppWidget(RemoteViews remoteViews) {
64 // Store the orientation in which the widget was inflated
Adam Cohen59400422014-03-05 18:07:04 -080065 updateLastInflationOrientation();
Adam Cohen06dff352012-06-01 17:17:08 -070066 super.updateAppWidget(remoteViews);
67 }
68
Sunny Goyalff572272014-07-23 13:58:07 -070069 public boolean isReinflateRequired() {
70 // Re-inflate is required if the orientation has changed since last inflated.
Adam Cohen06dff352012-06-01 17:17:08 -070071 int orientation = mContext.getResources().getConfiguration().orientation;
72 if (mPreviousOrientation != orientation) {
73 return true;
74 }
75 return false;
76 }
77
The Android Open Source Project31dd5032009-03-03 19:32:27 -080078 public boolean onInterceptTouchEvent(MotionEvent ev) {
Adam Cohen3798b642013-10-16 10:30:50 -070079 // Just in case the previous long press hasn't been cleared, we make sure to start fresh
80 // on touch down.
81 if (ev.getAction() == MotionEvent.ACTION_DOWN) {
82 mLongPressHelper.cancelLongPress();
83 }
84
The Android Open Source Project31dd5032009-03-03 19:32:27 -080085 // Consume any touch events for ourselves after longpress is triggered
Winson Chung88f33452012-02-23 15:23:44 -080086 if (mLongPressHelper.hasPerformedLongPress()) {
87 mLongPressHelper.cancelLongPress();
The Android Open Source Project31dd5032009-03-03 19:32:27 -080088 return true;
89 }
Adam Cohen19072da2011-05-31 14:30:45 -070090
The Android Open Source Project31dd5032009-03-03 19:32:27 -080091 // Watch for longpress events at this level to make sure
The Android Open Source Project7376fae2009-03-11 12:11:58 -070092 // users can always pick up this widget
The Android Open Source Project31dd5032009-03-03 19:32:27 -080093 switch (ev.getAction()) {
94 case MotionEvent.ACTION_DOWN: {
Winson Chung88f33452012-02-23 15:23:44 -080095 mLongPressHelper.postCheckForLongPress();
Adam Cohenb0f3d742013-10-08 19:16:14 -070096 mDragLayer.setTouchCompleteListener(this);
The Android Open Source Project31dd5032009-03-03 19:32:27 -080097 break;
98 }
Adam Cohen19072da2011-05-31 14:30:45 -070099
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800100 case MotionEvent.ACTION_UP:
101 case MotionEvent.ACTION_CANCEL:
Winson Chung88f33452012-02-23 15:23:44 -0800102 mLongPressHelper.cancelLongPress();
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800103 break;
Jason Monk02dd7ae2014-04-15 15:23:31 -0400104 case MotionEvent.ACTION_MOVE:
105 if (!Utilities.pointInView(this, ev.getX(), ev.getY(), mSlop)) {
106 mLongPressHelper.cancelLongPress();
107 }
108 break;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800109 }
Adam Cohen19072da2011-05-31 14:30:45 -0700110
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800111 // Otherwise continue letting touch events fall through to children
112 return false;
113 }
Adam Cohend4844c32011-02-18 19:25:06 -0800114
Winson Chunge7a852e2013-08-16 11:10:59 -0700115 public boolean onTouchEvent(MotionEvent ev) {
116 // If the widget does not handle touch, then cancel
117 // long press when we release the touch
118 switch (ev.getAction()) {
119 case MotionEvent.ACTION_UP:
120 case MotionEvent.ACTION_CANCEL:
121 mLongPressHelper.cancelLongPress();
122 break;
Jason Monk02dd7ae2014-04-15 15:23:31 -0400123 case MotionEvent.ACTION_MOVE:
124 if (!Utilities.pointInView(this, ev.getX(), ev.getY(), mSlop)) {
125 mLongPressHelper.cancelLongPress();
126 }
127 break;
Winson Chunge7a852e2013-08-16 11:10:59 -0700128 }
129 return false;
130 }
131
Jeff Sharkey83f111d2009-04-20 21:03:13 -0700132 @Override
Jason Monk02dd7ae2014-04-15 15:23:31 -0400133 protected void onAttachedToWindow() {
134 super.onAttachedToWindow();
135 mSlop = ViewConfiguration.get(getContext()).getScaledTouchSlop();
136 }
137
138 @Override
Jeff Sharkey83f111d2009-04-20 21:03:13 -0700139 public void cancelLongPress() {
140 super.cancelLongPress();
Adam Cohenb0f3d742013-10-08 19:16:14 -0700141 mLongPressHelper.cancelLongPress();
142 }
Jeff Sharkey83f111d2009-04-20 21:03:13 -0700143
Adam Cohenb0f3d742013-10-08 19:16:14 -0700144 @Override
Adam Cohen59400422014-03-05 18:07:04 -0800145 public AppWidgetProviderInfo getAppWidgetInfo() {
146 AppWidgetProviderInfo info = super.getAppWidgetInfo();
147 if (!(info instanceof LauncherAppWidgetProviderInfo)) {
148 throw new IllegalStateException("Launcher widget must have"
149 + "LauncherAppWidgetProviderInfo");
150 }
151 return info;
152 }
153
154 @Override
Adam Cohenb0f3d742013-10-08 19:16:14 -0700155 public void onTouchComplete() {
Adam Cohen3798b642013-10-16 10:30:50 -0700156 if (!mLongPressHelper.hasPerformedLongPress()) {
157 // If a long press has been performed, we don't want to clear the record of that since
158 // we still may be receiving a touch up which we want to intercept
159 mLongPressHelper.cancelLongPress();
160 }
Jeff Sharkey83f111d2009-04-20 21:03:13 -0700161 }
Michael Jurka99b6a5b2011-01-07 15:37:17 -0800162
Winson Chung97d85d22011-04-13 11:27:36 -0700163 @Override
164 public int getDescendantFocusability() {
165 return ViewGroup.FOCUS_BLOCK_DESCENDANTS;
166 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800167}