• Home
  • Raw
  • Download

Lines Matching refs:layout

385         setContentView(R.layout.launcher);  in onCreate()
420 mInflater.inflate(R.layout.apps_customize_progressbar, appsCustomizeContentParent); in onCreate()
703 final AppWidgetHostView layout = mAppWidgetHost.createView(this, appWidgetId, in completeTwoStageWidgetDrop() local
705 boundWidget = layout; in completeTwoStageWidgetDrop()
710 mPendingAddInfo.screen, layout, null); in completeTwoStageWidgetDrop()
1046 return createShortcut(R.layout.application, in createShortcut()
1074 final CellLayout layout = getCellLayout(container, screen); in completeAddApplication() local
1080 } else if (!layout.findCellForSpan(cellXY, 1, 1)) { in completeAddApplication()
1081 showOutOfSpaceMessage(isHotseatLayout(layout)); in completeAddApplication()
1093 mWorkspace.addApplicationShortcut(info, layout, container, screen, cellXY[0], cellXY[1], in completeAddApplication()
1110 CellLayout layout = getCellLayout(container, screen); in completeAddShortcut() local
1127 if (mWorkspace.createUserFolderIfNecessary(view, container, layout, cellXY, 0, in completeAddShortcut()
1133 if (mWorkspace.addToExistingFolderIfNecessary(view, layout, cellXY, 0, dragObject, in completeAddShortcut()
1139 int[] result = layout.findNearestVacantArea(touchXY[0], touchXY[1], 1, 1, cellXY); in completeAddShortcut()
1142 foundCellSpan = layout.findCellForSpan(cellXY, 1, 1); in completeAddShortcut()
1146 showOutOfSpaceMessage(isHotseatLayout(layout)); in completeAddShortcut()
1199 CellLayout layout = getCellLayout(container, screen); in completeAddAppWidget() local
1219 int[] result = layout.findNearestVacantArea( in completeAddAppWidget()
1226 foundCellSpan = layout.findCellForSpan(cellXY, minSpanXY[0], minSpanXY[1]); in completeAddAppWidget()
1239 showOutOfSpaceMessage(isHotseatLayout(layout)); in completeAddAppWidget()
1902 FolderIcon addFolder(CellLayout layout, long container, final int screen, int cellX, in addFolder() argument
1914 FolderIcon.fromXml(R.layout.folder_icon, this, layout, folderInfo, mIconCache); in addFolder()
2454 boolean isHotseatLayout(View layout) { in isHotseatLayout() argument
2455 return mHotseat != null && layout != null && in isHotseatLayout()
2456 (layout instanceof CellLayout) && (layout == mHotseat.getLayout()); in isHotseatLayout()
3071 void addExternalItemToScreen(ItemInfo itemInfo, final CellLayout layout) { in addExternalItemToScreen() argument
3072 if (!mWorkspace.addExternalItemToScreen(itemInfo, layout)) { in addExternalItemToScreen()
3073 showOutOfSpaceMessage(isHotseatLayout(layout)); in addExternalItemToScreen()
3173 HolographicLinearLayout layout = (HolographicLinearLayout) container; in invalidatePressedFocusedStates() local
3174 layout.invalidatePressedFocusedStates(); in invalidatePressedFocusedStates()
3505 FolderIcon newFolder = FolderIcon.fromXml(R.layout.folder_icon, this, in bindItems()
4030 … View customCling = mInflater.inflate(R.layout.custom_workspace_cling, clingParent, false); in showFirstRunWorkspaceCling()