blob: 6157a87214adc7618fc448ac9ed1999f1f1d36d7 [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
Daniel Sandler325dc232013-06-05 22:57:57 -040027import com.android.launcher3.R;
Romain Guyedcce092010-03-04 13:03:17 -080028
The Android Open Source Project31dd5032009-03-03 19:32:27 -080029/**
30 * {@inheritDoc}
31 */
Michael Jurka08ee7702011-08-11 16:53:35 -070032public class LauncherAppWidgetHostView extends AppWidgetHostView {
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;
Michael Jurka99b6a5b2011-01-07 15:37:17 -080037
The Android Open Source Project7376fae2009-03-11 12:11:58 -070038 public LauncherAppWidgetHostView(Context context) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -080039 super(context);
Adam Cohen06dff352012-06-01 17:17:08 -070040 mContext = context;
Winson Chung88f33452012-02-23 15:23:44 -080041 mLongPressHelper = new CheckLongPressHelper(this);
The Android Open Source Project31dd5032009-03-03 19:32:27 -080042 mInflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
43 }
Adam Cohen41d5d6d2011-05-31 15:52:28 -070044
The Android Open Source Project31dd5032009-03-03 19:32:27 -080045 @Override
46 protected View getErrorView() {
The Android Open Source Project7376fae2009-03-11 12:11:58 -070047 return mInflater.inflate(R.layout.appwidget_error, this, false);
The Android Open Source Project31dd5032009-03-03 19:32:27 -080048 }
49
Adam Cohen06dff352012-06-01 17:17:08 -070050 @Override
51 public void updateAppWidget(RemoteViews remoteViews) {
52 // Store the orientation in which the widget was inflated
53 mPreviousOrientation = mContext.getResources().getConfiguration().orientation;
54 super.updateAppWidget(remoteViews);
55 }
56
57 public boolean orientationChangedSincedInflation() {
58 int orientation = mContext.getResources().getConfiguration().orientation;
59 if (mPreviousOrientation != orientation) {
60 return true;
61 }
62 return false;
63 }
64
The Android Open Source Project31dd5032009-03-03 19:32:27 -080065 public boolean onInterceptTouchEvent(MotionEvent ev) {
66 // Consume any touch events for ourselves after longpress is triggered
Winson Chung88f33452012-02-23 15:23:44 -080067 if (mLongPressHelper.hasPerformedLongPress()) {
68 mLongPressHelper.cancelLongPress();
The Android Open Source Project31dd5032009-03-03 19:32:27 -080069 return true;
70 }
Adam Cohen19072da2011-05-31 14:30:45 -070071
The Android Open Source Project31dd5032009-03-03 19:32:27 -080072 // Watch for longpress events at this level to make sure
The Android Open Source Project7376fae2009-03-11 12:11:58 -070073 // users can always pick up this widget
The Android Open Source Project31dd5032009-03-03 19:32:27 -080074 switch (ev.getAction()) {
75 case MotionEvent.ACTION_DOWN: {
Winson Chung88f33452012-02-23 15:23:44 -080076 mLongPressHelper.postCheckForLongPress();
The Android Open Source Project31dd5032009-03-03 19:32:27 -080077 break;
78 }
Adam Cohen19072da2011-05-31 14:30:45 -070079
The Android Open Source Project31dd5032009-03-03 19:32:27 -080080 case MotionEvent.ACTION_UP:
81 case MotionEvent.ACTION_CANCEL:
Winson Chung88f33452012-02-23 15:23:44 -080082 mLongPressHelper.cancelLongPress();
The Android Open Source Project31dd5032009-03-03 19:32:27 -080083 break;
84 }
Adam Cohen19072da2011-05-31 14:30:45 -070085
The Android Open Source Project31dd5032009-03-03 19:32:27 -080086 // Otherwise continue letting touch events fall through to children
87 return false;
88 }
Adam Cohend4844c32011-02-18 19:25:06 -080089
Jeff Sharkey83f111d2009-04-20 21:03:13 -070090 @Override
91 public void cancelLongPress() {
92 super.cancelLongPress();
93
Winson Chung88f33452012-02-23 15:23:44 -080094 mLongPressHelper.cancelLongPress();
Jeff Sharkey83f111d2009-04-20 21:03:13 -070095 }
Michael Jurka99b6a5b2011-01-07 15:37:17 -080096
Winson Chung97d85d22011-04-13 11:27:36 -070097 @Override
98 public int getDescendantFocusability() {
99 return ViewGroup.FOCUS_BLOCK_DESCENDANTS;
100 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800101}