Home
last modified time | relevance | path

Searched refs:BubbleTextView (Results 1 – 25 of 34) sorted by relevance

12

/aosp12/packages/apps/Launcher3/src/com/android/launcher3/util/
H A DLauncherBindableItemsContainer.java21 import com.android.launcher3.BubbleTextView;
47 if (v instanceof BubbleTextView && updates.contains(info)) { in updateWorkspaceItems()
49 BubbleTextView shortcut = (BubbleTextView) v; in updateWorkspaceItems()
75 if (info instanceof WorkspaceItemInfo && v instanceof BubbleTextView in updateRestoreItems()
77 ((BubbleTextView) v).applyLoadingState(false /* promiseStateChanged */); in updateRestoreItems()
/aosp12/packages/apps/Launcher3/quickstep/src/com/android/quickstep/util/
H A DLauncherViewsMoveFromCenterTranslationApplier.java21 import com.android.launcher3.BubbleTextView;
36 } else if (view instanceof BubbleTextView) { in apply()
37 ((BubbleTextView) view).setTranslationForMoveFromCenterAnimation(x, y); in apply()
/aosp12/packages/apps/Launcher3/quickstep/src/com/android/launcher3/taskbar/
H A DTaskbarDragController.java37 import com.android.launcher3.BubbleTextView;
91 if (!(view instanceof BubbleTextView)) { in startDragOnLongClick()
95 BubbleTextView btv = (BubbleTextView) view; in startDragOnLongClick()
107 private void startInternalDrag(BubbleTextView btv) { in startInternalDrag()
236 startSystemDrag((BubbleTextView) mDragObject.originalView); in callOnDragStart()
239 private void startSystemDrag(BubbleTextView btv) { in startSystemDrag()
339 ((BubbleTextView) mDragObject.originalView).getIcon().setIsDisabled(false); in maybeOnDragEnd()
H A DTaskbarViewController.java30 import com.android.launcher3.BubbleTextView;
315 if (view instanceof BubbleTextView) {
316 ((BubbleTextView) view).setTranslationXForTaskbarAlignmentAnimation(v);
326 if (view instanceof BubbleTextView) {
327 return ((BubbleTextView) view)
H A DTaskbarView.java31 import com.android.launcher3.BubbleTextView;
175 if (hotseatView instanceof BubbleTextView in updateHotseatItems()
177 BubbleTextView btv = (BubbleTextView) hotseatView; in updateHotseatItems()
H A DTaskbarPopupController.java20 import com.android.launcher3.BubbleTextView;
62 public PopupContainerWithArrow<TaskbarActivityContext> showForIcon(BubbleTextView icon) { in showForIcon()
/aosp12/packages/apps/Launcher3/src/com/android/launcher3/
H A DBubbleTextView.java108 private static final Property<BubbleTextView, Float> DOT_SCALE_PROPERTY
109 = new Property<BubbleTextView, Float>(Float.TYPE, "dotScale") {
111 public Float get(BubbleTextView bubbleTextView) {
116 public void set(BubbleTextView bubbleTextView, Float value) {
122 public static final Property<BubbleTextView, Float> TEXT_ALPHA_PROPERTY
123 = new Property<BubbleTextView, Float>(Float.class, "textAlpha") {
125 public Float get(BubbleTextView bubbleTextView) {
130 public void set(BubbleTextView bubbleTextView, Float alpha) {
174 public BubbleTextView(Context context) { in BubbleTextView() method in BubbleTextView
178 public BubbleTextView(Context context, AttributeSet attrs) { in BubbleTextView() method in BubbleTextView
[all …]
H A DBaseDraggingActivity.java172 if (v instanceof BubbleTextView) { in getActivityLaunchOptions()
174 Drawable icon = ((BubbleTextView) v).getIcon(); in getActivityLaunchOptions()
/aosp12/packages/apps/Launcher3/src/com/android/launcher3/allapps/
H A DAllAppsStore.java27 import com.android.launcher3.BubbleTextView;
176 private void updateAllIcons(Consumer<BubbleTextView> action) { in updateAllIcons()
183 if (child instanceof BubbleTextView) { in updateAllIcons()
184 action.accept((BubbleTextView) child); in updateAllIcons()
H A DAllAppsGridAdapter.java42 import com.android.launcher3.BubbleTextView;
356 BubbleTextView icon = (BubbleTextView) mLayoutInflater.inflate( in onCreateViewHolder()
394 BubbleTextView icon = (BubbleTextView) holder.itemView; in onBindViewHolder()
/aosp12/packages/apps/Launcher3/quickstep/src/com/android/launcher3/appprediction/
H A DPredictionRowView.java32 import com.android.launcher3.BubbleTextView;
194 BubbleTextView icon = (BubbleTextView) inflater.inflate( in applyPredictionApps()
213 BubbleTextView icon = (BubbleTextView) getChildAt(i); in applyPredictionApps()
/aosp12/packages/apps/Launcher3/src/com/android/launcher3/secondarydisplay/
H A DPinnedAppsAdapter.java33 import com.android.launcher3.BubbleTextView;
131 BubbleTextView icon; in getView()
132 if (view instanceof BubbleTextView) { in getView()
133 icon = (BubbleTextView) view; in getView()
135 icon = (BubbleTextView) LayoutInflater.from(parent.getContext()) in getView()
H A DSecondaryDragLayer.java30 import com.android.launcher3.BubbleTextView;
168 if (!(v instanceof BubbleTextView)) { in onIconLongClicked()
184 container.populateAndShow((BubbleTextView) v, in onIconLongClicked()
/aosp12/packages/apps/Launcher3/src/com/android/launcher3/views/
H A DBubbleTextHolder.java18 import com.android.launcher3.BubbleTextView;
26 BubbleTextView getBubbleText(); in getBubbleText()
H A DFloatingIconView.java46 import com.android.launcher3.BubbleTextView;
230 if (v instanceof BubbleTextView) { in getLocationBoundsForView()
231 ((BubbleTextView) v).getIconBounds(outViewBounds); in getLocationBoundsForView()
285 if (originalView instanceof BubbleTextView) { in getIconResult()
522 if (v instanceof BubbleTextView) { in fetchIcon()
523 BubbleTextView btv = (BubbleTextView) v; in fetchIcon()
H A DDoubleShadowBubbleTextView.java28 import com.android.launcher3.BubbleTextView;
34 public class DoubleShadowBubbleTextView extends BubbleTextView {
/aosp12/packages/apps/Launcher3/src/com/android/launcher3/folder/
H A DFolderAnimationManager.java21 import static com.android.launcher3.BubbleTextView.TEXT_ALPHA_PROPERTY;
39 import com.android.launcher3.BubbleTextView;
129 final List<BubbleTextView> itemsInPreview = getPreviewIconsOnPage(0); in getAnimator()
198 for (BubbleTextView icon : mFolder.getItemsOnPage(mFolder.mContent.getCurrentPage())) { in getAnimator()
321 private List<BubbleTextView> getPreviewIconsOnPage(int page) { in getPreviewIconsOnPage()
333 final List<BubbleTextView> itemsInPreview = getPreviewIconsOnPage( in addPreviewItemAnimators()
343 final BubbleTextView btv = itemsInPreview.get(i); in addPreviewItemAnimators()
H A DFolderPagedView.java35 import com.android.launcher3.BubbleTextView;
215 final BubbleTextView textView = mViewCache.getView( in createNewView()
322 if (mOrganizer.isItemInPreview(rank) && v instanceof BubbleTextView) { in arrangeChildren()
323 ((BubbleTextView) v).verifyHighRes(); in arrangeChildren()
492 BubbleTextView icon = ((BubbleTextView) parent.getChildAt(i)); in verifyVisibleHighResIcons()
/aosp12/packages/apps/Launcher3/src/com/android/launcher3/shortcuts/
H A DDeepShortcutView.java33 import com.android.launcher3.BubbleTextView;
53 private BubbleTextView mBubbleText;
116 public BubbleTextView getBubbleText() { in getBubbleText()
H A DDeepShortcutTextView.java28 import com.android.launcher3.BubbleTextView;
35 public class DeepShortcutTextView extends BubbleTextView {
/aosp12/packages/apps/Launcher3/src/com/android/launcher3/allapps/search/
H A DDefaultSearchAdapterProvider.java27 import com.android.launcher3.BubbleTextView;
72 if (mHighlightedView instanceof BubbleTextView in launchHighlightedItem()
/aosp12/packages/apps/Launcher3/quickstep/src/com/android/launcher3/hybridhotseat/
H A DHotseatEduController.java26 import com.android.launcher3.BubbleTextView;
284 BubbleTextView tipTargetView = null; in showHotseatArrowTip()
289 if (v instanceof BubbleTextView && v.getTag() instanceof WorkspaceItemInfo) { in showHotseatArrowTip()
293 tipTargetView = (BubbleTextView) v; in showHotseatArrowTip()
/aosp12/packages/apps/Launcher3/src/com/android/launcher3/popup/
H A DPopupContainerWithArrow.java44 import com.android.launcher3.BubbleTextView;
93 private BubbleTextView mOriginalIcon;
190 return icon instanceof BubbleTextView && ShortcutUtil.supportsShortcuts(item); in canShow()
197 public static PopupContainerWithArrow<Launcher> showForIcon(BubbleTextView icon) { in showForIcon()
242 public void populateAndShow(final BubbleTextView originalIcon, int shortcutCount, in populateAndShow()
/aosp12/packages/apps/Launcher3/src/com/android/launcher3/graphics/
H A DDragPreviewProvider.java34 import com.android.launcher3.BubbleTextView;
197 mIsIcon = mView instanceof BubbleTextView; in OutlineGeneratorCallback()
H A DLauncherPreviewRenderer.java58 import com.android.launcher3.BubbleTextView;
324 BubbleTextView icon = (BubbleTextView) mHomeElementInflater.inflate(

12