Home
last modified time | relevance | path

Searched refs:addedBubble (Results 1 – 3 of 3) sorted by relevance

/packages/apps/Launcher3/quickstep/src/com/android/launcher3/taskbar/bubbles/
DBubbleBarController.java151 BubbleBarBubble addedBubble; field in BubbleBarController.BubbleBarViewUpdate
257 if (update.addedBubble != null in onBubbleStateChange()
262 if (update.addedBubble != null) { in onBubbleStateChange()
263 viewUpdate.addedBubble = mBubbleCreator.populateBubble(mContext, in onBubbleStateChange()
264 update.addedBubble, in onBubbleStateChange()
345 if (update.addedBubble != null) { in applyViewChanges()
346 mBubbles.put(update.addedBubble.getKey(), update.addedBubble); in applyViewChanges()
362 && update.showOverflowChanged && !update.showOverflow && update.addedBubble != null in applyViewChanges()
366 mBubbleBarViewController.removeOverflowAndAddBubble(update.addedBubble, bubbleToSelect); in applyViewChanges()
367 } else if (update.addedBubble != null && update.removedBubbles.size() == 1) { in applyViewChanges()
[all …]
DBubbleBarViewController.java1076 public void addBubbleAndRemoveBubble(BubbleBarBubble addedBubble, BubbleBarBubble removedBubble,
1080 mBarView.addBubbleAndRemoveBubble(addedBubble.getView(), removedBubble.getView(),
1082 addedBubble.getView().setOnClickListener(mBubbleClickListener);
1083 addedBubble.getView().setController(mBubbleViewController);
1085 mBubbleDragController.setupBubbleView(addedBubble.getView());
1087 animateBubbleNotification(addedBubble, isExpanding, /* isUpdate= */ false);
1125 public void removeOverflowAndAddBubble(BubbleBarBubble addedBubble,
1130 mBarView.addBubbleAndRemoveBubble(addedBubble.getView(), mOverflowBubble.getView(),
1132 addedBubble.getView().setOnClickListener(mBubbleClickListener);
1133 addedBubble.getView().setController(mBubbleViewController);
DBubbleBarView.java776 public void addBubbleAndRemoveBubble(BubbleView addedBubble, BubbleView removedBubble, in addBubbleAndRemoveBubble() argument
780 int addedIndex = addedBubble.isOverflow() ? getChildCount() : 0; in addBubbleAndRemoveBubble()
783 addView(addedBubble, addedIndex, lp); in addBubbleAndRemoveBubble()
789 addedBubble.setScaleX(0f); in addBubbleAndRemoveBubble()
790 addedBubble.setScaleY(0f); in addBubbleAndRemoveBubble()
791 addView(addedBubble, addedIndex, lp); in addBubbleAndRemoveBubble()
819 addedBubble.setScaleX(1); in addBubbleAndRemoveBubble()
820 addedBubble.setScaleY(1); in addBubbleAndRemoveBubble()
827 addedBubble.setScaleX(animatedFraction); in addBubbleAndRemoveBubble()
828 addedBubble.setScaleY(animatedFraction); in addBubbleAndRemoveBubble()