blob: 83aef1a2f307e33bc98f3919e8cb9a975d1d30c6 [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;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080020import android.content.Context;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080021import android.view.LayoutInflater;
22import android.view.MotionEvent;
23import android.view.View;
Winson Chung97d85d22011-04-13 11:27:36 -070024import android.view.ViewGroup;
Adam Cohen06dff352012-06-01 17:17:08 -070025import android.widget.RemoteViews;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080026
Adam Cohenb0f3d742013-10-08 19:16:14 -070027import com.android.launcher3.DragLayer.TouchCompleteListener;
28
The Android Open Source Project31dd5032009-03-03 19:32:27 -080029/**
30 * {@inheritDoc}
31 */
Adam Cohenb0f3d742013-10-08 19:16:14 -070032public class LauncherAppWidgetHostView extends AppWidgetHostView implements TouchCompleteListener {
Winson Chung88f33452012-02-23 15:23:44 -080033 private CheckLongPressHelper mLongPressHelper;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080034 private LayoutInflater mInflater;
Adam Cohen06dff352012-06-01 17:17:08 -070035 private Context mContext;
36 private int mPreviousOrientation;
Adam Cohenb0f3d742013-10-08 19:16:14 -070037 private DragLayer mDragLayer;
Michael Jurka99b6a5b2011-01-07 15:37:17 -080038
The Android Open Source Project7376fae2009-03-11 12:11:58 -070039 public LauncherAppWidgetHostView(Context context) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -080040 super(context);
Adam Cohen06dff352012-06-01 17:17:08 -070041 mContext = context;
Winson Chung88f33452012-02-23 15:23:44 -080042 mLongPressHelper = new CheckLongPressHelper(this);
The Android Open Source Project31dd5032009-03-03 19:32:27 -080043 mInflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
Adam Cohenb0f3d742013-10-08 19:16:14 -070044 mDragLayer = ((Launcher) context).getDragLayer();
The Android Open Source Project31dd5032009-03-03 19:32:27 -080045 }
Adam Cohen41d5d6d2011-05-31 15:52:28 -070046
The Android Open Source Project31dd5032009-03-03 19:32:27 -080047 @Override
48 protected View getErrorView() {
The Android Open Source Project7376fae2009-03-11 12:11:58 -070049 return mInflater.inflate(R.layout.appwidget_error, this, false);
The Android Open Source Project31dd5032009-03-03 19:32:27 -080050 }
51
Adam Cohen06dff352012-06-01 17:17:08 -070052 @Override
53 public void updateAppWidget(RemoteViews remoteViews) {
54 // Store the orientation in which the widget was inflated
55 mPreviousOrientation = mContext.getResources().getConfiguration().orientation;
56 super.updateAppWidget(remoteViews);
57 }
58
59 public boolean orientationChangedSincedInflation() {
60 int orientation = mContext.getResources().getConfiguration().orientation;
61 if (mPreviousOrientation != orientation) {
62 return true;
63 }
64 return false;
65 }
66
The Android Open Source Project31dd5032009-03-03 19:32:27 -080067 public boolean onInterceptTouchEvent(MotionEvent ev) {
68 // Consume any touch events for ourselves after longpress is triggered
Winson Chung88f33452012-02-23 15:23:44 -080069 if (mLongPressHelper.hasPerformedLongPress()) {
70 mLongPressHelper.cancelLongPress();
The Android Open Source Project31dd5032009-03-03 19:32:27 -080071 return true;
72 }
Adam Cohen19072da2011-05-31 14:30:45 -070073
The Android Open Source Project31dd5032009-03-03 19:32:27 -080074 // Watch for longpress events at this level to make sure
The Android Open Source Project7376fae2009-03-11 12:11:58 -070075 // users can always pick up this widget
The Android Open Source Project31dd5032009-03-03 19:32:27 -080076 switch (ev.getAction()) {
77 case MotionEvent.ACTION_DOWN: {
Winson Chung88f33452012-02-23 15:23:44 -080078 mLongPressHelper.postCheckForLongPress();
Adam Cohenb0f3d742013-10-08 19:16:14 -070079 mDragLayer.setTouchCompleteListener(this);
The Android Open Source Project31dd5032009-03-03 19:32:27 -080080 break;
81 }
Adam Cohen19072da2011-05-31 14:30:45 -070082
The Android Open Source Project31dd5032009-03-03 19:32:27 -080083 case MotionEvent.ACTION_UP:
84 case MotionEvent.ACTION_CANCEL:
Winson Chung88f33452012-02-23 15:23:44 -080085 mLongPressHelper.cancelLongPress();
The Android Open Source Project31dd5032009-03-03 19:32:27 -080086 break;
87 }
Adam Cohen19072da2011-05-31 14:30:45 -070088
The Android Open Source Project31dd5032009-03-03 19:32:27 -080089 // Otherwise continue letting touch events fall through to children
90 return false;
91 }
Adam Cohend4844c32011-02-18 19:25:06 -080092
Winson Chunge7a852e2013-08-16 11:10:59 -070093 public boolean onTouchEvent(MotionEvent ev) {
94 // If the widget does not handle touch, then cancel
95 // long press when we release the touch
96 switch (ev.getAction()) {
97 case MotionEvent.ACTION_UP:
98 case MotionEvent.ACTION_CANCEL:
99 mLongPressHelper.cancelLongPress();
100 break;
101 }
102 return false;
103 }
104
Jeff Sharkey83f111d2009-04-20 21:03:13 -0700105 @Override
106 public void cancelLongPress() {
107 super.cancelLongPress();
Adam Cohenb0f3d742013-10-08 19:16:14 -0700108 mLongPressHelper.cancelLongPress();
109 }
Jeff Sharkey83f111d2009-04-20 21:03:13 -0700110
Adam Cohenb0f3d742013-10-08 19:16:14 -0700111 @Override
112 public void onTouchComplete() {
Winson Chung88f33452012-02-23 15:23:44 -0800113 mLongPressHelper.cancelLongPress();
Jeff Sharkey83f111d2009-04-20 21:03:13 -0700114 }
Michael Jurka99b6a5b2011-01-07 15:37:17 -0800115
Winson Chung97d85d22011-04-13 11:27:36 -0700116 @Override
117 public int getDescendantFocusability() {
118 return ViewGroup.FOCUS_BLOCK_DESCENDANTS;
119 }
Adam Cohenb0f3d742013-10-08 19:16:14 -0700120
121
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800122}