/packages/apps/Launcher3/src/com/android/launcher3/ |
D | BubbleTextView.java | 52 public class BubbleTextView extends TextView class 91 public BubbleTextView(Context context) { in BubbleTextView() method in BubbleTextView 95 public BubbleTextView(Context context, AttributeSet attrs) { in BubbleTextView() method in BubbleTextView 99 public BubbleTextView(Context context, AttributeSet attrs, int defStyle) { in BubbleTextView() method in BubbleTextView 105 R.styleable.BubbleTextView, defStyle, 0); in BubbleTextView() 577 .updateIconInBackground(BubbleTextView.this, info); in verifyHighRes() 583 .updateIconInBackground(BubbleTextView.this, info); in verifyHighRes() 589 .updateIconInBackground(BubbleTextView.this, info); in verifyHighRes() 641 void setPressedIcon(BubbleTextView icon, Bitmap background); in setPressedIcon()
|
D | FolderPagedView.java | 211 final BubbleTextView textView = (BubbleTextView) mInflater.inflate( in createNewView() 333 if (rank < FolderIcon.NUM_ITEMS_IN_PREVIEW && v instanceof BubbleTextView) { in arrangeChildren() 334 ((BubbleTextView) v).verifyHighRes(); in arrangeChildren() 529 ((BubbleTextView) parent.getChildAt(i)).verifyHighRes(); in verifyVisibleHighResIcons()
|
D | ClickShadowView.java | 91 public void alignWithIconView(BubbleTextView view, ViewGroup viewParent) { in alignWithIconView()
|
D | Workspace.java | 2393 if (child instanceof BubbleTextView) { in beginDragShared() 2394 BubbleTextView icon = (BubbleTextView) child; in beginDragShared() 2424 if (child instanceof BubbleTextView) { in beginDragShared() 2425 BubbleTextView icon = (BubbleTextView) child; in beginDragShared() 4424 if (info instanceof ShortcutInfo && v instanceof BubbleTextView && 4427 BubbleTextView shortcut = (BubbleTextView) v; 4455 if (info instanceof ShortcutInfo && v instanceof BubbleTextView 4457 ((BubbleTextView) v).applyState(false);
|
D | HolographicOutlineHelper.java | 158 Bitmap createMediumDropShadow(BubbleTextView view) { in createMediumDropShadow()
|
D | FolderIcon.java | 94 @Thunk BubbleTextView mFolderName; 157 icon.mFolderName = (BubbleTextView) icon.findViewById(R.id.folder_icon_name); in fromXml()
|
D | CellLayout.java | 50 import com.android.launcher3.BubbleTextView.BubbleTextShadowHandler; 387 public void setPressedIcon(BubbleTextView icon, Bitmap background) { in setPressedIcon() 638 if (child instanceof BubbleTextView) { in addViewToCellLayout() 639 BubbleTextView bubbleChild = (BubbleTextView) child; in addViewToCellLayout()
|
D | Launcher.java | 345 private BubbleTextView mWaitingForResume; 1481 BubbleTextView favorite = (BubbleTextView) mInflater.inflate(R.layout.app_icon, in createShortcut() 2668 if ((v instanceof BubbleTextView) in onClickAppShortcut() 2711 if (success && v instanceof BubbleTextView) { in startAppShortcutOrInfoActivity() 2712 mWaitingForResume = (BubbleTextView) v; in startAppShortcutOrInfoActivity()
|
D | IconCache.java | 397 … public IconLoadRequest updateIconInBackground(final BubbleTextView caller, final ItemInfo info) { in updateIconInBackground()
|
/packages/apps/Launcher3/src/com/android/launcher3/allapps/ |
D | AllAppsGridAdapter.java | 45 import com.android.launcher3.BubbleTextView; 519 BubbleTextView icon = (BubbleTextView) mLayoutInflater.inflate( in onCreateViewHolder() 530 BubbleTextView icon = (BubbleTextView) mLayoutInflater.inflate( in onCreateViewHolder() 566 BubbleTextView icon = (BubbleTextView) holder.mContent; in onBindViewHolder() 574 BubbleTextView icon = (BubbleTextView) holder.mContent; in onBindViewHolder()
|
D | AllAppsRecyclerViewContainerView.java | 25 import com.android.launcher3.BubbleTextView; 26 import com.android.launcher3.BubbleTextView.BubbleTextShadowHandler; 63 public void setPressedIcon(BubbleTextView icon, Bitmap background) { in setPressedIcon()
|
D | AllAppsRecyclerView.java | 28 import com.android.launcher3.BubbleTextView; 174 if (v instanceof BubbleTextView) { in fillInLaunchSourceData() 175 BubbleTextView icon = (BubbleTextView) v; in fillInLaunchSourceData()
|
D | AllAppsContainerView.java | 36 import com.android.launcher3.BubbleTextView; 303 BubbleTextView icon = (BubbleTextView) layoutInflater.inflate( in onFinishInflate() 307 BubbleTextView predIcon = (BubbleTextView) layoutInflater.inflate( in onFinishInflate()
|
/packages/apps/Launcher2/src/com/android/launcher2/ |
D | BubbleTextView.java | 36 public class BubbleTextView extends TextView { class 64 public BubbleTextView(Context context) { in BubbleTextView() method in BubbleTextView 69 public BubbleTextView(Context context, AttributeSet attrs) { in BubbleTextView() method in BubbleTextView 74 public BubbleTextView(Context context, AttributeSet attrs, int defStyle) { in BubbleTextView() method in BubbleTextView 176 getExtendedPaddingTop() - (int) BubbleTextView.PADDING_V + getLayout().getLineTop(0); in drawWithPadding()
|
D | Hotseat.java | 114 BubbleTextView allAppsButton = (BubbleTextView) in resetLayout()
|
D | Workspace.java | 1786 } else if (v instanceof BubbleTextView) { 1787 final BubbleTextView tv = (BubbleTextView) v; 1788 clipRect.bottom = tv.getExtendedPaddingTop() - (int) BubbleTextView.PADDING_V + 1915 if (child instanceof BubbleTextView || child instanceof PagedViewIcon) { 1934 if (child instanceof BubbleTextView) { 1935 BubbleTextView icon = (BubbleTextView) child; 3847 BubbleTextView shortcut = (BubbleTextView) view;
|
D | FolderIcon.java | 82 private BubbleTextView mFolderName; 135 icon.mFolderName = (BubbleTextView) icon.findViewById(R.id.folder_icon_name); in fromXml()
|
D | CellLayout.java | 124 private BubbleTextView mPressedOrFocusedIcon; 346 private void invalidateBubbleTextView(BubbleTextView icon) { in invalidateBubbleTextView() 366 void setPressedOrFocusedIcon(BubbleTextView icon) { in setPressedOrFocusedIcon() 369 BubbleTextView oldIcon = mPressedOrFocusedIcon; in setPressedOrFocusedIcon() 620 if (child instanceof BubbleTextView) { in addViewToCellLayout() 621 BubbleTextView bubbleChild = (BubbleTextView) child; in addViewToCellLayout()
|
D | FocusHelper.java | 600 if (newV instanceof BubbleTextView || newV instanceof FolderIcon) { in findIndexOfIcon() 640 (newV instanceof BubbleTextView || newV instanceof FolderIcon)) { in getClosestIconOnLine()
|
D | Launcher.java | 318 private BubbleTextView mWaitingForResume; 1086 BubbleTextView favorite = (BubbleTextView) mInflater.inflate(layoutResId, parent, false); in createShortcut() 2057 if (success && v instanceof BubbleTextView) { in onClick() 2058 mWaitingForResume = (BubbleTextView) v; in onClick()
|
/packages/apps/Launcher3/src/com/android/launcher3/widget/ |
D | WidgetsListAdapter.java | 32 import com.android.launcher3.BubbleTextView; 133 BubbleTextView tv = ((BubbleTextView) holder.getContent().findViewById(R.id.section)); in onBindViewHolder()
|