Home
last modified time | relevance | path

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

/packages/apps/Launcher2/src/com/android/launcher2/
DBubbleTextView.java36 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()
DWorkspace.java1786 } 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;
DHotseat.java114 BubbleTextView allAppsButton = (BubbleTextView) in resetLayout()
DCellLayout.java124 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()
DFolderIcon.java82 private BubbleTextView mFolderName;
135 icon.mFolderName = (BubbleTextView) icon.findViewById(R.id.folder_icon_name); in fromXml()
DFocusHelper.java600 if (newV instanceof BubbleTextView || newV instanceof FolderIcon) { in findIndexOfIcon()
640 (newV instanceof BubbleTextView || newV instanceof FolderIcon)) { in getClosestIconOnLine()
DLauncher.java313 private BubbleTextView mWaitingForResume;
1060 BubbleTextView favorite = (BubbleTextView) mInflater.inflate(layoutResId, parent, false); in createShortcut()
2031 if (success && v instanceof BubbleTextView) { in onClick()
2032 mWaitingForResume = (BubbleTextView) v; in onClick()
/packages/apps/Launcher3/src/com/android/launcher3/
DBubbleTextView.java41 public class BubbleTextView extends TextView { class
70 public BubbleTextView(Context context) { in BubbleTextView() method in BubbleTextView
74 public BubbleTextView(Context context, AttributeSet attrs) { in BubbleTextView() method in BubbleTextView
78 public BubbleTextView(Context context, AttributeSet attrs, int defStyle) { in BubbleTextView() method in BubbleTextView
82 R.styleable.BubbleTextView, defStyle, 0); in BubbleTextView()
DWorkspace.java2744 if (child instanceof BubbleTextView) { in beginDragShared()
2761 if (child instanceof BubbleTextView) { in beginDragShared()
2762 BubbleTextView icon = (BubbleTextView) child; in beginDragShared()
4702 if (info instanceof ShortcutInfo && v instanceof BubbleTextView) {
4708 BubbleTextView shortcut = (BubbleTextView) v;
4889 if (info instanceof ShortcutInfo && v instanceof BubbleTextView &&
4892 BubbleTextView shortcut = (BubbleTextView) v;
4919 if (info instanceof ShortcutInfo && v instanceof BubbleTextView) {
4933 BubbleTextView shortcut = (BubbleTextView) v;
4956 if (info instanceof ShortcutInfo && v instanceof BubbleTextView) {
[all …]
DHolographicOutlineHelper.java155 Bitmap createMediumDropShadow(BubbleTextView view) { in createMediumDropShadow()
166 clipRect.bottom = view.getExtendedPaddingTop() - (int) BubbleTextView.PADDING_V in createMediumDropShadow()
DFocusHelper.java355 if (newV instanceof BubbleTextView || newV instanceof FolderIcon) { in findIndexOfIcon()
395 (newV instanceof BubbleTextView || newV instanceof FolderIcon)) { in getClosestIconOnLine()
DAppsCustomizePagedView.java693 if (v instanceof BubbleTextView) { in beginDragging()
963 BubbleTextView icon = (BubbleTextView) mLayoutInflater.inflate( in syncAppsPageItems()
DFolderIcon.java92 private BubbleTextView mFolderName;
153 icon.mFolderName = (BubbleTextView) icon.findViewById(R.id.folder_icon_name); in fromXml()
DLauncher.java352 private BubbleTextView mWaitingForResume;
1491 BubbleTextView favorite = (BubbleTextView) mInflater.inflate(layoutResId, parent, false); in createShortcut()
2686 if ((v instanceof BubbleTextView) in onClickAppShortcut()
2729 if (success && v instanceof BubbleTextView) { in startAppShortcutOrInfoActivity()
2730 mWaitingForResume = (BubbleTextView) v; in startAppShortcutOrInfoActivity()
DCellLayout.java353 void setPressedIcon(BubbleTextView icon, Bitmap background, int padding) { in setPressedIcon()
599 if (child instanceof BubbleTextView) { in addViewToCellLayout()
600 BubbleTextView bubbleChild = (BubbleTextView) child; in addViewToCellLayout()
DFolder.java642 final BubbleTextView textView = in createAndAddShortcut()
643 (BubbleTextView) mInflater.inflate(R.layout.folder_application, this, false); in createAndAddShortcut()