1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
|
/*
* Copyright (C) 2016 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License
*/
package com.android.systemui.statusbar.notification.row;
import static android.provider.Settings.Secure.SHOW_NOTIFICATION_SNOOZE;
import static android.view.HapticFeedbackConstants.CLOCK_TICK;
import static com.android.systemui.SwipeHelper.SWIPED_FAR_ENOUGH_SIZE_FRACTION;
import android.animation.Animator;
import android.animation.AnimatorListenerAdapter;
import android.animation.ValueAnimator;
import android.annotation.Nullable;
import android.content.Context;
import android.content.res.Resources;
import android.graphics.Point;
import android.graphics.drawable.Drawable;
import android.os.Handler;
import android.os.Looper;
import android.provider.Settings;
import android.service.notification.StatusBarNotification;
import android.util.ArrayMap;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.FrameLayout;
import android.widget.FrameLayout.LayoutParams;
import com.android.internal.annotations.VisibleForTesting;
import com.android.systemui.R;
import com.android.systemui.animation.Interpolators;
import com.android.systemui.plugins.statusbar.NotificationMenuRowPlugin;
import com.android.systemui.statusbar.AlphaOptimizedImageView;
import com.android.systemui.statusbar.notification.collection.NotificationEntry;
import com.android.systemui.statusbar.notification.people.PeopleNotificationIdentifier;
import com.android.systemui.statusbar.notification.row.NotificationGuts.GutsContent;
import com.android.systemui.statusbar.notification.stack.NotificationStackScrollLayout;
import java.util.ArrayList;
import java.util.List;
import java.util.Map;
public class NotificationMenuRow implements NotificationMenuRowPlugin, View.OnClickListener,
ExpandableNotificationRow.LayoutListener {
// Notification must be swiped at least this fraction of a single menu item to show menu
private static final float SWIPED_FAR_ENOUGH_MENU_FRACTION = 0.25f;
private static final float SWIPED_FAR_ENOUGH_MENU_UNCLEARABLE_FRACTION = 0.15f;
// When the menu is displayed, the notification must be swiped within this fraction of a single
// menu item to snap back to menu (else it will cover the menu or it'll be dismissed)
private static final float SWIPED_BACK_ENOUGH_TO_COVER_FRACTION = 0.2f;
private static final int ICON_ALPHA_ANIM_DURATION = 200;
private static final long SHOW_MENU_DELAY = 60;
private ExpandableNotificationRow mParent;
private Context mContext;
private FrameLayout mMenuContainer;
private NotificationMenuItem mInfoItem;
private MenuItem mFeedbackItem;
private MenuItem mSnoozeItem;
private ArrayList<MenuItem> mLeftMenuItems;
private ArrayList<MenuItem> mRightMenuItems;
private final Map<View, MenuItem> mMenuItemsByView = new ArrayMap<>();
private OnMenuEventListener mMenuListener;
private ValueAnimator mFadeAnimator;
private boolean mAnimating;
private boolean mMenuFadedIn;
private boolean mOnLeft;
private boolean mIconsPlaced;
private boolean mDismissing;
private boolean mSnapping;
private float mTranslation;
private int[] mIconLocation = new int[2];
private int[] mParentLocation = new int[2];
private int mHorizSpaceForIcon = -1;
private int mVertSpaceForIcons = -1;
private int mIconPadding = -1;
private int mSidePadding;
private float mAlpha = 0f;
private CheckForDrag mCheckForDrag;
private Handler mHandler;
private boolean mMenuSnapped;
private boolean mMenuSnappedOnLeft;
private boolean mShouldShowMenu;
private boolean mIsUserTouching;
private boolean mSnappingToDismiss;
private final PeopleNotificationIdentifier mPeopleNotificationIdentifier;
public NotificationMenuRow(Context context,
PeopleNotificationIdentifier peopleNotificationIdentifier) {
mContext = context;
mShouldShowMenu = context.getResources().getBoolean(R.bool.config_showNotificationGear);
mHandler = new Handler(Looper.getMainLooper());
mLeftMenuItems = new ArrayList<>();
mRightMenuItems = new ArrayList<>();
mPeopleNotificationIdentifier = peopleNotificationIdentifier;
}
@Override
public ArrayList<MenuItem> getMenuItems(Context context) {
return mOnLeft ? mLeftMenuItems : mRightMenuItems;
}
@Override
public MenuItem getLongpressMenuItem(Context context) {
return mInfoItem;
}
@Override
public MenuItem getFeedbackMenuItem(Context context) {
return mFeedbackItem;
}
@Override
public MenuItem getSnoozeMenuItem(Context context) {
return mSnoozeItem;
}
@VisibleForTesting
protected ExpandableNotificationRow getParent() {
return mParent;
}
@VisibleForTesting
protected boolean isMenuOnLeft() {
return mOnLeft;
}
@VisibleForTesting
protected boolean isMenuSnappedOnLeft() {
return mMenuSnappedOnLeft;
}
@VisibleForTesting
protected boolean isMenuSnapped() {
return mMenuSnapped;
}
@VisibleForTesting
protected boolean isDismissing() {
return mDismissing;
}
@VisibleForTesting
protected boolean isSnapping() {
return mSnapping;
}
@VisibleForTesting
protected boolean isSnappingToDismiss() {
return mSnappingToDismiss;
}
@Override
public void setMenuClickListener(OnMenuEventListener listener) {
mMenuListener = listener;
}
@Override
public void createMenu(ViewGroup parent, StatusBarNotification sbn) {
mParent = (ExpandableNotificationRow) parent;
createMenuViews(true /* resetState */);
}
@Override
public boolean isMenuVisible() {
return mAlpha > 0;
}
@VisibleForTesting
protected boolean isUserTouching() {
return mIsUserTouching;
}
@Override
public boolean shouldShowMenu() {
return mShouldShowMenu;
}
@Override
public View getMenuView() {
return mMenuContainer;
}
@VisibleForTesting
protected float getTranslation() {
return mTranslation;
}
@Override
public void resetMenu() {
resetState(true);
}
@Override
public void onTouchEnd() {
mIsUserTouching = false;
}
@Override
public void onNotificationUpdated(StatusBarNotification sbn) {
if (mMenuContainer == null) {
// Menu hasn't been created yet, no need to do anything.
return;
}
createMenuViews(!isMenuVisible() /* resetState */);
}
@Override
public void onConfigurationChanged() {
mParent.setLayoutListener(this);
}
@Override
public void onLayout() {
mIconsPlaced = false; // Force icons to be re-placed
setMenuLocation();
mParent.removeListener();
}
private void createMenuViews(boolean resetState) {
final Resources res = mContext.getResources();
mHorizSpaceForIcon = res.getDimensionPixelSize(R.dimen.notification_menu_icon_size);
mVertSpaceForIcons = res.getDimensionPixelSize(R.dimen.notification_min_height);
mLeftMenuItems.clear();
mRightMenuItems.clear();
boolean showSnooze = Settings.Secure.getInt(mContext.getContentResolver(),
SHOW_NOTIFICATION_SNOOZE, 0) == 1;
// Construct the menu items based on the notification
if (showSnooze) {
// Only show snooze for non-foreground notifications, and if the setting is on
mSnoozeItem = createSnoozeItem(mContext);
}
mFeedbackItem = createFeedbackItem(mContext);
NotificationEntry entry = mParent.getEntry();
int personNotifType = mPeopleNotificationIdentifier.getPeopleNotificationType(entry);
if (personNotifType == PeopleNotificationIdentifier.TYPE_PERSON) {
mInfoItem = createPartialConversationItem(mContext);
} else if (personNotifType >= PeopleNotificationIdentifier.TYPE_FULL_PERSON) {
mInfoItem = createConversationItem(mContext);
} else {
mInfoItem = createInfoItem(mContext);
}
if (showSnooze) {
mRightMenuItems.add(mSnoozeItem);
}
mRightMenuItems.add(mInfoItem);
mRightMenuItems.add(mFeedbackItem);
mLeftMenuItems.addAll(mRightMenuItems);
populateMenuViews();
if (resetState) {
resetState(false /* notify */);
} else {
mIconsPlaced = false;
setMenuLocation();
if (!mIsUserTouching) {
onSnapOpen();
}
}
}
private void populateMenuViews() {
if (mMenuContainer != null) {
mMenuContainer.removeAllViews();
mMenuItemsByView.clear();
} else {
mMenuContainer = new FrameLayout(mContext);
}
final int showDismissSetting = Settings.Global.getInt(mContext.getContentResolver(),
Settings.Global.SHOW_NEW_NOTIF_DISMISS, /* default = */ 1);
final boolean newFlowHideShelf = showDismissSetting == 1;
if (newFlowHideShelf) {
return;
}
List<MenuItem> menuItems = mOnLeft ? mLeftMenuItems : mRightMenuItems;
for (int i = 0; i < menuItems.size(); i++) {
addMenuView(menuItems.get(i), mMenuContainer);
}
}
private void resetState(boolean notify) {
setMenuAlpha(0f);
mIconsPlaced = false;
mMenuFadedIn = false;
mAnimating = false;
mSnapping = false;
mDismissing = false;
mMenuSnapped = false;
setMenuLocation();
if (mMenuListener != null && notify) {
mMenuListener.onMenuReset(mParent);
}
}
@Override
public void onTouchMove(float delta) {
mSnapping = false;
if (!isTowardsMenu(delta) && isMenuLocationChange()) {
// Don't consider it "snapped" if location has changed.
mMenuSnapped = false;
// Changed directions, make sure we check to fade in icon again.
if (!mHandler.hasCallbacks(mCheckForDrag)) {
// No check scheduled, set null to schedule a new one.
mCheckForDrag = null;
} else {
// Check scheduled, reset alpha and update location; check will fade it in
setMenuAlpha(0f);
setMenuLocation();
}
}
if (mShouldShowMenu
&& !NotificationStackScrollLayout.isPinnedHeadsUp(getParent())
&& !mParent.areGutsExposed()
&& !mParent.showingPulsing()
&& (mCheckForDrag == null || !mHandler.hasCallbacks(mCheckForDrag))) {
// Only show the menu if we're not a heads up view and guts aren't exposed.
mCheckForDrag = new CheckForDrag();
mHandler.postDelayed(mCheckForDrag, SHOW_MENU_DELAY);
}
if (canBeDismissed()) {
final float dismissThreshold = getDismissThreshold();
final boolean snappingToDismiss = delta < -dismissThreshold || delta > dismissThreshold;
if (mSnappingToDismiss != snappingToDismiss) {
getMenuView().performHapticFeedback(CLOCK_TICK);
}
mSnappingToDismiss = snappingToDismiss;
}
}
@VisibleForTesting
protected void beginDrag() {
mSnapping = false;
if (mFadeAnimator != null) {
mFadeAnimator.cancel();
}
mHandler.removeCallbacks(mCheckForDrag);
mCheckForDrag = null;
mIsUserTouching = true;
}
@Override
public void onTouchStart() {
beginDrag();
mSnappingToDismiss = false;
}
@Override
public void onSnapOpen() {
mMenuSnapped = true;
mMenuSnappedOnLeft = isMenuOnLeft();
if (mAlpha == 0f && mParent != null) {
fadeInMenu(mParent.getWidth());
}
if (mMenuListener != null) {
mMenuListener.onMenuShown(getParent());
}
}
@Override
public void onSnapClosed() {
cancelDrag();
mMenuSnapped = false;
mSnapping = true;
}
@Override
public void onDismiss() {
cancelDrag();
mMenuSnapped = false;
mDismissing = true;
}
@VisibleForTesting
protected void cancelDrag() {
if (mFadeAnimator != null) {
mFadeAnimator.cancel();
}
mHandler.removeCallbacks(mCheckForDrag);
}
@VisibleForTesting
protected float getMinimumSwipeDistance() {
final float multiplier = getParent().canViewBeDismissed()
? SWIPED_FAR_ENOUGH_MENU_FRACTION
: SWIPED_FAR_ENOUGH_MENU_UNCLEARABLE_FRACTION;
return mHorizSpaceForIcon * multiplier;
}
@VisibleForTesting
protected float getMaximumSwipeDistance() {
return mHorizSpaceForIcon * SWIPED_BACK_ENOUGH_TO_COVER_FRACTION;
}
/**
* Returns whether the gesture is towards the menu location or not.
*/
@Override
public boolean isTowardsMenu(float movement) {
return isMenuVisible()
&& ((isMenuOnLeft() && movement <= 0)
|| (!isMenuOnLeft() && movement >= 0));
}
@Override
public void setAppName(String appName) {
if (appName == null) {
return;
}
setAppName(appName, mLeftMenuItems);
setAppName(appName, mRightMenuItems);
}
private void setAppName(String appName,
ArrayList<MenuItem> menuItems) {
Resources res = mContext.getResources();
final int count = menuItems.size();
for (int i = 0; i < count; i++) {
MenuItem item = menuItems.get(i);
String description = String.format(
res.getString(R.string.notification_menu_accessibility),
appName, item.getContentDescription());
View menuView = item.getMenuView();
if (menuView != null) {
menuView.setContentDescription(description);
}
}
}
@Override
public void onParentHeightUpdate() {
if (mParent == null
|| (mLeftMenuItems.isEmpty() && mRightMenuItems.isEmpty())
|| mMenuContainer == null) {
return;
}
int parentHeight = mParent.getActualHeight();
float translationY;
if (parentHeight < mVertSpaceForIcons) {
translationY = (parentHeight / 2) - (mHorizSpaceForIcon / 2);
} else {
translationY = (mVertSpaceForIcons - mHorizSpaceForIcon) / 2;
}
mMenuContainer.setTranslationY(translationY);
}
@Override
public void onParentTranslationUpdate(float translation) {
mTranslation = translation;
if (mAnimating || !mMenuFadedIn) {
// Don't adjust when animating, or if the menu hasn't been shown yet.
return;
}
final float fadeThreshold = mParent.getWidth() * 0.3f;
final float absTrans = Math.abs(translation);
float desiredAlpha = 0;
if (absTrans == 0) {
desiredAlpha = 0;
} else if (absTrans <= fadeThreshold) {
desiredAlpha = 1;
} else {
desiredAlpha = 1 - ((absTrans - fadeThreshold) / (mParent.getWidth() - fadeThreshold));
}
setMenuAlpha(desiredAlpha);
}
@Override
public void onClick(View v) {
if (mMenuListener == null) {
// Nothing to do
return;
}
v.getLocationOnScreen(mIconLocation);
mParent.getLocationOnScreen(mParentLocation);
final int centerX = mHorizSpaceForIcon / 2;
final int centerY = v.getHeight() / 2;
final int x = mIconLocation[0] - mParentLocation[0] + centerX;
final int y = mIconLocation[1] - mParentLocation[1] + centerY;
if (mMenuItemsByView.containsKey(v)) {
mMenuListener.onMenuClicked(mParent, x, y, mMenuItemsByView.get(v));
}
}
private boolean isMenuLocationChange() {
boolean onLeft = mTranslation > mIconPadding;
boolean onRight = mTranslation < -mIconPadding;
if ((isMenuOnLeft() && onRight) || (!isMenuOnLeft() && onLeft)) {
return true;
}
return false;
}
private void setMenuLocation() {
boolean showOnLeft = mTranslation > 0;
if ((mIconsPlaced && showOnLeft == isMenuOnLeft()) || isSnapping() || mMenuContainer == null
|| !mMenuContainer.isAttachedToWindow()) {
// Do nothing
return;
}
boolean wasOnLeft = mOnLeft;
mOnLeft = showOnLeft;
if (wasOnLeft != showOnLeft) {
populateMenuViews();
}
final int count = mMenuContainer.getChildCount();
for (int i = 0; i < count; i++) {
final View v = mMenuContainer.getChildAt(i);
final float left = i * mHorizSpaceForIcon;
final float right = mParent.getWidth() - (mHorizSpaceForIcon * (i + 1));
v.setX(showOnLeft ? left : right);
}
mIconsPlaced = true;
}
@VisibleForTesting
protected void setMenuAlpha(float alpha) {
mAlpha = alpha;
if (mMenuContainer == null) {
return;
}
if (alpha == 0) {
mMenuFadedIn = false; // Can fade in again once it's gone.
mMenuContainer.setVisibility(View.INVISIBLE);
} else {
mMenuContainer.setVisibility(View.VISIBLE);
}
final int count = mMenuContainer.getChildCount();
for (int i = 0; i < count; i++) {
mMenuContainer.getChildAt(i).setAlpha(mAlpha);
}
}
/**
* Returns the horizontal space in pixels required to display the menu.
*/
@VisibleForTesting
protected int getSpaceForMenu() {
return mHorizSpaceForIcon * mMenuContainer.getChildCount();
}
private final class CheckForDrag implements Runnable {
@Override
public void run() {
final float absTransX = Math.abs(mTranslation);
final float bounceBackToMenuWidth = getSpaceForMenu();
final float notiThreshold = mParent.getWidth() * 0.4f;
if ((!isMenuVisible() || isMenuLocationChange())
&& absTransX >= bounceBackToMenuWidth * 0.4
&& absTransX < notiThreshold) {
fadeInMenu(notiThreshold);
}
}
}
private void fadeInMenu(final float notiThreshold) {
if (mDismissing || mAnimating) {
return;
}
if (isMenuLocationChange()) {
setMenuAlpha(0f);
}
final float transX = mTranslation;
final boolean fromLeft = mTranslation > 0;
setMenuLocation();
mFadeAnimator = ValueAnimator.ofFloat(mAlpha, 1);
mFadeAnimator.addUpdateListener(new ValueAnimator.AnimatorUpdateListener() {
@Override
public void onAnimationUpdate(ValueAnimator animation) {
final float absTrans = Math.abs(transX);
boolean pastMenu = (fromLeft && transX <= notiThreshold)
|| (!fromLeft && absTrans <= notiThreshold);
if (pastMenu && !mMenuFadedIn) {
setMenuAlpha((float) animation.getAnimatedValue());
}
}
});
mFadeAnimator.addListener(new AnimatorListenerAdapter() {
@Override
public void onAnimationStart(Animator animation) {
mAnimating = true;
}
@Override
public void onAnimationCancel(Animator animation) {
// TODO should animate back to 0f from current alpha
setMenuAlpha(0f);
}
@Override
public void onAnimationEnd(Animator animation) {
mAnimating = false;
mMenuFadedIn = mAlpha == 1;
}
});
mFadeAnimator.setInterpolator(Interpolators.ALPHA_IN);
mFadeAnimator.setDuration(ICON_ALPHA_ANIM_DURATION);
mFadeAnimator.start();
}
@Override
public void setMenuItems(ArrayList<MenuItem> items) {
// Do nothing we use our own for now.
// TODO -- handle / allow custom menu items!
}
@Override
public boolean shouldShowGutsOnSnapOpen() {
return false;
}
@Override
public MenuItem menuItemToExposeOnSnap() {
return null;
}
@Override
public Point getRevealAnimationOrigin() {
View v = mInfoItem.getMenuView();
int menuX = v.getLeft() + v.getPaddingLeft() + (v.getWidth() / 2);
int menuY = v.getTop() + v.getPaddingTop() + (v.getHeight() / 2);
if (isMenuOnLeft()) {
return new Point(menuX, menuY);
} else {
menuX = mParent.getRight() - menuX;
return new Point(menuX, menuY);
}
}
static MenuItem createSnoozeItem(Context context) {
Resources res = context.getResources();
NotificationSnooze content = (NotificationSnooze) LayoutInflater.from(context)
.inflate(R.layout.notification_snooze, null, false);
String snoozeDescription = res.getString(R.string.notification_menu_snooze_description);
MenuItem snooze = new NotificationMenuItem(context, snoozeDescription, content,
R.drawable.ic_snooze);
return snooze;
}
static NotificationMenuItem createConversationItem(Context context) {
Resources res = context.getResources();
String infoDescription = res.getString(R.string.notification_menu_gear_description);
NotificationConversationInfo infoContent =
(NotificationConversationInfo) LayoutInflater.from(context).inflate(
R.layout.notification_conversation_info, null, false);
return new NotificationMenuItem(context, infoDescription, infoContent,
R.drawable.ic_settings);
}
static NotificationMenuItem createPartialConversationItem(Context context) {
Resources res = context.getResources();
String infoDescription = res.getString(R.string.notification_menu_gear_description);
PartialConversationInfo infoContent =
(PartialConversationInfo) LayoutInflater.from(context).inflate(
R.layout.partial_conversation_info, null, false);
return new NotificationMenuItem(context, infoDescription, infoContent,
R.drawable.ic_settings);
}
static NotificationMenuItem createInfoItem(Context context) {
Resources res = context.getResources();
String infoDescription = res.getString(R.string.notification_menu_gear_description);
NotificationInfo infoContent = (NotificationInfo) LayoutInflater.from(context).inflate(
R.layout.notification_info, null, false);
return new NotificationMenuItem(context, infoDescription, infoContent,
R.drawable.ic_settings);
}
static MenuItem createFeedbackItem(Context context) {
FeedbackInfo feedbackContent = (FeedbackInfo) LayoutInflater.from(context).inflate(
R.layout.feedback_info, null, false);
MenuItem info = new NotificationMenuItem(context, null, feedbackContent,
-1 /*don't show in slow swipe menu */);
return info;
}
private void addMenuView(MenuItem item, ViewGroup parent) {
View menuView = item.getMenuView();
if (menuView != null) {
menuView.setAlpha(mAlpha);
parent.addView(menuView);
menuView.setOnClickListener(this);
FrameLayout.LayoutParams lp = (LayoutParams) menuView.getLayoutParams();
lp.width = mHorizSpaceForIcon;
lp.height = mHorizSpaceForIcon;
menuView.setLayoutParams(lp);
}
mMenuItemsByView.put(menuView, item);
}
@VisibleForTesting
/**
* Determine the minimum offset below which the menu should snap back closed.
*/
protected float getSnapBackThreshold() {
return getSpaceForMenu() - getMaximumSwipeDistance();
}
/**
* Determine the maximum offset above which the parent notification should be dismissed.
* @return
*/
@VisibleForTesting
protected float getDismissThreshold() {
return getParent().getWidth() * SWIPED_FAR_ENOUGH_SIZE_FRACTION;
}
@Override
public boolean isWithinSnapMenuThreshold() {
float translation = getTranslation();
float snapBackThreshold = getSnapBackThreshold();
float targetRight = getDismissThreshold();
return isMenuOnLeft()
? translation > snapBackThreshold && translation < targetRight
: translation < -snapBackThreshold && translation > -targetRight;
}
@Override
public boolean isSwipedEnoughToShowMenu() {
final float minimumSwipeDistance = getMinimumSwipeDistance();
final float translation = getTranslation();
return isMenuVisible() && (isMenuOnLeft() ?
translation > minimumSwipeDistance
: translation < -minimumSwipeDistance);
}
@Override
public int getMenuSnapTarget() {
return isMenuOnLeft() ? getSpaceForMenu() : -getSpaceForMenu();
}
@Override
public boolean shouldSnapBack() {
float translation = getTranslation();
float targetLeft = getSnapBackThreshold();
return isMenuOnLeft() ? translation < targetLeft : translation > -targetLeft;
}
@Override
public boolean isSnappedAndOnSameSide() {
return isMenuSnapped() && isMenuVisible()
&& isMenuSnappedOnLeft() == isMenuOnLeft();
}
@Override
public boolean canBeDismissed() {
return getParent().canViewBeDismissed();
}
public static class NotificationMenuItem implements MenuItem {
View mMenuView;
GutsContent mGutsContent;
String mContentDescription;
/**
* Add a new 'guts' panel. If iconResId < 0 it will not appear in the slow swipe menu
* but can still be exposed via other affordances.
*/
public NotificationMenuItem(Context context, String contentDescription, GutsContent content,
int iconResId) {
Resources res = context.getResources();
int padding = res.getDimensionPixelSize(R.dimen.notification_menu_icon_padding);
int tint = res.getColor(R.color.notification_gear_color);
if (iconResId >= 0) {
AlphaOptimizedImageView iv = new AlphaOptimizedImageView(context);
iv.setPadding(padding, padding, padding, padding);
Drawable icon = context.getResources().getDrawable(iconResId);
iv.setImageDrawable(icon);
iv.setColorFilter(tint);
iv.setAlpha(1f);
mMenuView = iv;
}
mContentDescription = contentDescription;
mGutsContent = content;
}
@Override
@Nullable
public View getMenuView() {
return mMenuView;
}
@Override
public View getGutsView() {
return mGutsContent.getContentView();
}
@Override
public String getContentDescription() {
return mContentDescription;
}
}
}
|