HomeSort by relevance Sort by last modified time
    Searched refs:BubbleTextView (Results 1 - 25 of 28) sorted by null

1 2

  /packages/apps/Launcher3/src/com/android/launcher3/widget/
WidgetsRowViewHolder.java 21 import com.android.launcher3.BubbleTextView;
27 public final BubbleTextView title;
  /packages/apps/Launcher3/src/com/android/launcher3/
LauncherAppTransitionManager.java 40 if (v instanceof BubbleTextView) {
42 Drawable icon = ((BubbleTextView) v).getIcon();
BubbleTextView.java 60 public class BubbleTextView extends TextView implements ItemInfoUpdateReceiver, OnResumeCallback {
69 private static final Property<BubbleTextView, Float> BADGE_SCALE_PROPERTY
70 = new Property<BubbleTextView, Float>(Float.TYPE, "badgeScale") {
72 public Float get(BubbleTextView bubbleTextView) {
73 return bubbleTextView.mBadgeScale;
77 public void set(BubbleTextView bubbleTextView, Float value) {
78 bubbleTextView.mBadgeScale = value;
79 bubbleTextView.invalidate()
    [all...]
Workspace.java     [all...]
Launcher.java     [all...]
  /packages/apps/Launcher3/src/com/android/launcher3/allapps/
AllAppsStore.java 22 import com.android.launcher3.BubbleTextView;
150 if (child instanceof BubbleTextView) {
151 action.apply((BubbleTextView) child);
162 void apply(BubbleTextView icon);
AllAppsGridAdapter.java 36 import com.android.launcher3.BubbleTextView;
250 BubbleTextView icon = (BubbleTextView) mLayoutInflater.inflate(
289 BubbleTextView icon = (BubbleTextView) holder.itemView;
  /packages/apps/Launcher3/src/com/android/launcher3/shortcuts/
DeepShortcutTextView.java 27 import com.android.launcher3.BubbleTextView;
32 * A {@link BubbleTextView} that has the shortcut icon on the left and drag handle on the right.
34 public class DeepShortcutTextView extends BubbleTextView {
DeepShortcutView.java 27 import com.android.launcher3.BubbleTextView;
45 private BubbleTextView mBubbleText;
78 public BubbleTextView getBubbleText() {
  /packages/apps/Launcher3/src/com/android/launcher3/graphics/
DragPreviewProvider.java 31 import com.android.launcher3.BubbleTextView;
67 if (mView instanceof BubbleTextView) {
68 Drawable d = ((BubbleTextView) mView).getIcon();
83 if (mView instanceof BubbleTextView) {
84 Drawable d = ((BubbleTextView) mView).getIcon();
123 if (mView instanceof BubbleTextView) {
124 Drawable d = ((BubbleTextView) mView).getIcon();
  /packages/apps/Launcher3/src/com/android/launcher3/folder/
PreviewItemManager.java 29 import com.android.launcher3.BubbleTextView;
201 List<BubbleTextView> items = mIcon.getPreviewItemsOnPage(page);
301 public void onDrop(List<BubbleTextView> oldParams, List<BubbleTextView> newParams,
308 List<BubbleTextView> moveIn = new ArrayList<>();
309 for (BubbleTextView btv : newParams) {
332 List<BubbleTextView> moveOut = new ArrayList<>(oldParams);
335 BubbleTextView item = moveOut.get(i);
349 private void updateTransitionParam(final PreviewItemDrawingParams p, BubbleTextView btv,
FolderAnimationManager.java 19 import static com.android.launcher3.BubbleTextView.TEXT_ALPHA_PROPERTY;
38 import com.android.launcher3.BubbleTextView;
115 final List<BubbleTextView> itemsInPreview = mFolderIcon.getPreviewItems();
178 for (BubbleTextView icon : mFolder.getItemsOnPage(mFolder.mContent.getCurrentPage())) {
239 final List<BubbleTextView> itemsInPreview = isOnFirstPage
250 final BubbleTextView btv = itemsInPreview.get(i);
FolderIcon.java 43 import com.android.launcher3.BubbleTextView;
93 @Thunk BubbleTextView mFolderName;
102 private List<BubbleTextView> mCurrentPreviewItems = new ArrayList<>();
313 List<BubbleTextView> oldPreviewItems = new ArrayList<>(mCurrentPreviewItems);
521 public List<BubbleTextView> getPreviewItems() {
528 public List<BubbleTextView> getPreviewItemsOnPage(int page) {
531 List<BubbleTextView> itemsToDisplay = new ArrayList<>();
532 List<BubbleTextView> itemsOnPage = mFolder.getItemsOnPage(page);
FolderPagedView.java 31 import com.android.launcher3.BubbleTextView;
234 final BubbleTextView textView = (BubbleTextView) mInflater.inflate(
357 if (verifier.isItemInPreview(rank) && v instanceof BubbleTextView) {
358 ((BubbleTextView) v).verifyHighRes();
541 BubbleTextView icon = ((BubbleTextView) parent.getChildAt(i));
Folder.java 52 import com.android.launcher3.BubbleTextView;
    [all...]
  /packages/apps/Launcher2/src/com/android/launcher2/
BubbleTextView.java 36 public class BubbleTextView extends TextView {
64 public BubbleTextView(Context context) {
69 public BubbleTextView(Context context, AttributeSet attrs) {
74 public BubbleTextView(Context context, AttributeSet attrs, int defStyle) {
165 * Draw this BubbleTextView into the given Canvas.
176 getExtendedPaddingTop() - (int) BubbleTextView.PADDING_V + getLayout().getLineTop(0);
Hotseat.java 114 BubbleTextView allAppsButton = (BubbleTextView)
FolderIcon.java 82 private BubbleTextView mFolderName;
135 icon.mFolderName = (BubbleTextView) icon.findViewById(R.id.folder_icon_name);
Workspace.java     [all...]
FocusHelper.java 589 * Private helper method to find the index of the next BubbleTextView or FolderIcon in the
595 // Then we find the next BubbleTextView offset by delta from i
600 if (newV instanceof BubbleTextView || newV instanceof FolderIcon) {
618 * Private helper method to find the next closest BubbleTextView or FolderIcon in the direction
640 (newV instanceof BubbleTextView || newV instanceof FolderIcon)) {
    [all...]
  /packages/apps/Launcher3/src/com/android/launcher3/views/
DoubleShadowBubbleTextView.java 27 import com.android.launcher3.BubbleTextView;
31 * Extension of {@link BubbleTextView} which draws two shadows on the text (ambient and key shadows}
33 public class DoubleShadowBubbleTextView extends BubbleTextView {
  /packages/apps/Launcher3/src/com/android/launcher3/touch/
ItemClickHandler.java 35 import com.android.launcher3.BubbleTextView;
193 if ((v instanceof BubbleTextView) && shortcut.hasPromiseIconUi()) {
  /packages/apps/Launcher3/src/com/android/launcher3/popup/
PopupContainerWithArrow.java 45 import com.android.launcher3.BubbleTextView;
91 private BubbleTextView mOriginalIcon;
170 public static PopupContainerWithArrow showForIcon(BubbleTextView icon) {
218 private void populateAndShow(final BubbleTextView originalIcon, final List<String> shortcutIds,
  /packages/apps/Launcher3/quickstep/src/com/android/launcher3/
LauncherAppTransitionManagerImpl.java 419 final boolean isBubbleTextView = v instanceof BubbleTextView;
442 BubbleTextView btv = (BubbleTextView) v;
551 } else if (v instanceof BubbleTextView) {
552 ((BubbleTextView) v).getIconBounds(bounds);
    [all...]
  /packages/apps/Launcher3/src/com/android/launcher3/accessibility/
LauncherAccessibilityDelegate.java 21 import com.android.launcher3.BubbleTextView;
232 return PopupContainerWithArrow.showForIcon((BubbleTextView) host) != null;

Completed in 290 milliseconds

1 2