Home
last modified time | relevance | path

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

/packages/apps/Launcher3/src/com/android/launcher3/testing/
DLauncherExtension.java177 FrameLayout customContent = new FrameLayout(LauncherExtension.this); in populateCustomContentContainer() local
178 customContent.setBackgroundColor(Color.GRAY); in populateCustomContentContainer()
179 addToCustomContentPage(customContent, mCustomContentCallbacks, ""); in populateCustomContentContainer()
/packages/apps/Launcher3/src/com/android/launcher3/
DWorkspace.java374 View customContent = customScreen.getShortcutsAndWidgets().getChildAt(0); in setInsets() local
375 if (customContent instanceof Insettable) { in setInsets()
376 ((Insettable) customContent).setInsets(mInsets); in setInsets()
767 public void addToCustomContentPage(View customContent, CustomContentCallbacks callbacks, in addToCustomContentPage() argument
780 if (customContent instanceof Insettable) { in addToCustomContentPage()
781 ((Insettable)customContent).setInsets(mInsets); in addToCustomContentPage()
785 if (customContent.getParent() instanceof ViewGroup) { in addToCustomContentPage()
786 ViewGroup parent = (ViewGroup) customContent.getParent(); in addToCustomContentPage()
787 parent.removeView(customContent); in addToCustomContentPage()
790 customContent.setFocusable(true); in addToCustomContentPage()
[all …]
DLauncher.java1169 public void addToCustomContentPage(View customContent, in addToCustomContentPage() argument
1171 mWorkspace.addToCustomContentPage(customContent, callbacks, description); in addToCustomContentPage()