blob: c85571c1895d75c0dc245893ae17c2df40ee71bb [file] [log] [blame]
Selim Cinekb8f09cf2015-03-16 17:09:28 -07001/*
2 * Copyright (C) 2015 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
17package com.android.systemui.statusbar.phone;
18
19import android.content.Context;
20import android.view.MotionEvent;
21import android.view.ViewConfiguration;
22
23import com.android.systemui.Gefingerpoken;
24import com.android.systemui.statusbar.ExpandableNotificationRow;
25import com.android.systemui.statusbar.ExpandableView;
yoshiki iguchi0adf6a62018-02-01 13:46:26 +090026import com.android.systemui.statusbar.policy.HeadsUpManager;
Selim Cinekb8f09cf2015-03-16 17:09:28 -070027import com.android.systemui.statusbar.stack.NotificationStackScrollLayout;
28
29/**
Selim Cinek684a4422015-04-15 16:18:39 -070030 * A helper class to handle touches on the heads-up views.
Selim Cinekb8f09cf2015-03-16 17:09:28 -070031 */
32public class HeadsUpTouchHelper implements Gefingerpoken {
33
yoshiki iguchi0adf6a62018-02-01 13:46:26 +090034 private HeadsUpManager mHeadsUpManager;
Selim Cinekb8f09cf2015-03-16 17:09:28 -070035 private NotificationStackScrollLayout mStackScroller;
36 private int mTrackingPointer;
37 private float mTouchSlop;
38 private float mInitialTouchX;
39 private float mInitialTouchY;
Selim Cinek684a4422015-04-15 16:18:39 -070040 private boolean mTouchingHeadsUpView;
Selim Cinekb8f09cf2015-03-16 17:09:28 -070041 private boolean mTrackingHeadsUp;
42 private boolean mCollapseSnoozes;
43 private NotificationPanelView mPanel;
44 private ExpandableNotificationRow mPickedChild;
45
yoshiki iguchi0adf6a62018-02-01 13:46:26 +090046 public HeadsUpTouchHelper(HeadsUpManager headsUpManager,
Selim Cinek684a4422015-04-15 16:18:39 -070047 NotificationStackScrollLayout stackScroller,
48 NotificationPanelView notificationPanelView) {
49 mHeadsUpManager = headsUpManager;
50 mStackScroller = stackScroller;
51 mPanel = notificationPanelView;
52 Context context = stackScroller.getContext();
53 final ViewConfiguration configuration = ViewConfiguration.get(context);
54 mTouchSlop = configuration.getScaledTouchSlop();
55 }
56
Selim Cinekb8f09cf2015-03-16 17:09:28 -070057 public boolean isTrackingHeadsUp() {
58 return mTrackingHeadsUp;
59 }
60
61 @Override
62 public boolean onInterceptTouchEvent(MotionEvent event) {
Selim Cinek684a4422015-04-15 16:18:39 -070063 if (!mTouchingHeadsUpView && event.getActionMasked() != MotionEvent.ACTION_DOWN) {
Selim Cinekb8f09cf2015-03-16 17:09:28 -070064 return false;
65 }
66 int pointerIndex = event.findPointerIndex(mTrackingPointer);
67 if (pointerIndex < 0) {
68 pointerIndex = 0;
69 mTrackingPointer = event.getPointerId(pointerIndex);
70 }
71 final float x = event.getX(pointerIndex);
72 final float y = event.getY(pointerIndex);
73 switch (event.getActionMasked()) {
74 case MotionEvent.ACTION_DOWN:
75 mInitialTouchY = y;
76 mInitialTouchX = x;
77 setTrackingHeadsUp(false);
Selim Cinek35b77712015-05-11 17:00:39 -070078 ExpandableView child = mStackScroller.getChildAtRawPosition(x, y);
Selim Cinek684a4422015-04-15 16:18:39 -070079 mTouchingHeadsUpView = false;
Selim Cinekb8f09cf2015-03-16 17:09:28 -070080 if (child instanceof ExpandableNotificationRow) {
81 mPickedChild = (ExpandableNotificationRow) child;
Selim Cinek3776fe02016-02-04 13:32:43 -080082 mTouchingHeadsUpView = !mStackScroller.isExpanded()
83 && mPickedChild.isHeadsUp() && mPickedChild.isPinned();
Selim Cinekb8f09cf2015-03-16 17:09:28 -070084 }
85 break;
86 case MotionEvent.ACTION_POINTER_UP:
87 final int upPointer = event.getPointerId(event.getActionIndex());
88 if (mTrackingPointer == upPointer) {
89 // gesture is ongoing, find a new pointer to track
90 final int newIndex = event.getPointerId(0) != upPointer ? 0 : 1;
91 mTrackingPointer = event.getPointerId(newIndex);
92 mInitialTouchX = event.getX(newIndex);
93 mInitialTouchY = event.getY(newIndex);
94 }
95 break;
96
97 case MotionEvent.ACTION_MOVE:
98 final float h = y - mInitialTouchY;
Selim Cinek131c1e22015-05-11 19:04:49 -070099 if (mTouchingHeadsUpView && Math.abs(h) > mTouchSlop
100 && Math.abs(h) > Math.abs(x - mInitialTouchX)) {
Selim Cinekb8f09cf2015-03-16 17:09:28 -0700101 setTrackingHeadsUp(true);
102 mCollapseSnoozes = h < 0;
103 mInitialTouchX = x;
104 mInitialTouchY = y;
Selim Cinekb8f09cf2015-03-16 17:09:28 -0700105 int expandedHeight = mPickedChild.getActualHeight();
Selim Cinek3d395c62015-06-16 19:37:37 -0700106 mPanel.setPanelScrimMinFraction((float) expandedHeight
107 / mPanel.getMaxPanelHeight());
Selim Cinek33d46142016-01-15 18:58:39 -0800108 mPanel.startExpandMotion(x, y, true /* startTracking */, expandedHeight);
Chris Wren621933f2017-06-14 15:59:03 -0400109 mPanel.startExpandingFromPeek();
Selim Cinekdef35a82016-05-03 15:52:51 -0700110 // This call needs to be after the expansion start otherwise we will get a
111 // flicker of one frame as it's not expanded yet.
112 mHeadsUpManager.unpinAll();
Xiaohui Chen9528f432016-02-12 15:03:18 -0800113 mPanel.clearNotificationEffects();
Selim Cinek31f708c2017-08-23 10:59:57 -0700114 endMotion();
Selim Cinekb8f09cf2015-03-16 17:09:28 -0700115 return true;
116 }
117 break;
118
119 case MotionEvent.ACTION_CANCEL:
120 case MotionEvent.ACTION_UP:
Selim Cinek684a4422015-04-15 16:18:39 -0700121 if (mPickedChild != null && mTouchingHeadsUpView) {
122 // We may swallow this click if the heads up just came in.
Selim Cinekb8f09cf2015-03-16 17:09:28 -0700123 if (mHeadsUpManager.shouldSwallowClick(
124 mPickedChild.getStatusBarNotification().getKey())) {
125 endMotion();
126 return true;
127 }
128 }
129 endMotion();
130 break;
131 }
132 return false;
133 }
134
135 private void setTrackingHeadsUp(boolean tracking) {
136 mTrackingHeadsUp = tracking;
137 mHeadsUpManager.setTrackingHeadsUp(tracking);
138 mPanel.setTrackingHeadsUp(tracking);
139 }
140
141 public void notifyFling(boolean collapse) {
142 if (collapse && mCollapseSnoozes) {
143 mHeadsUpManager.snooze();
144 }
145 mCollapseSnoozes = false;
146 }
147
148 @Override
149 public boolean onTouchEvent(MotionEvent event) {
150 if (!mTrackingHeadsUp) {
151 return false;
152 }
153 switch (event.getActionMasked()) {
154 case MotionEvent.ACTION_UP:
155 case MotionEvent.ACTION_CANCEL:
156 endMotion();
157 setTrackingHeadsUp(false);
158 break;
159 }
160 return true;
161 }
162
163 private void endMotion() {
164 mTrackingPointer = -1;
165 mPickedChild = null;
Selim Cinek684a4422015-04-15 16:18:39 -0700166 mTouchingHeadsUpView = false;
Selim Cinekb8f09cf2015-03-16 17:09:28 -0700167 }
168}