Home | History | Annotate | Download | only in launcher3

Lines Matching defs:mContent

79     protected CellLayout mContent;
183 mContent = (CellLayout) findViewById(R.id.folder_content);
186 mContent.addView(mFocusIndicatorHandler, 0);
193 mContent.setCellDimensions(grid.folderCellWidthPx, grid.folderCellHeightPx);
194 mContent.setGridSize(0, 0);
195 mContent.getShortcutsAndWidgets().setMotionEventSplittingEnabled(false);
196 mContent.setInvertIfRtl(true);
258 mContent.removeView(mCurrentDragView);
313 return mContent;
371 final int countX = mContent.getCountX();
487 int width = getPaddingLeft() + getPaddingRight() + mContent.getDesiredWidth();
506 mContent.setAlpha(0f);
507 Animator iconsAlpha = LauncherAnimUtils.ofFloat(mContent, "alpha", 0f, 1f);
530 mContent.setLayerType(LAYER_TYPE_HARDWARE, null);
534 mContent.setLayerType(LAYER_TYPE_NONE, null);
543 mContent.getCountX(), mContent.getCountY()));
589 View firstChild = mContent.getChildAt(0, 0);
632 if (mContent.findCellForSpan(emptyCell, item.spanX, item.spanY)) {
652 if (mContent.getChildAt(item.cellX, item.cellY) != null || item.cellX < 0 || item.cellY < 0
653 || item.cellX >= mContent.getCountX() || item.cellY >= mContent.getCountY()) {
665 mContent.addViewToCellLayout(textView, insert ? 0 : -1, (int)item.id, lp, true);
697 wrap = empty[0] >= mContent.getCountX() - 1;
701 endX = y < target[1] ? mContent.getCountX() - 1 : target[0];
703 View v = mContent.getChildAt(x,y);
704 if (mContent.animateChildToPosition(v, empty[0], empty[1],
717 startX = y == empty[1] ? empty[0] - 1 : mContent.getCountX() - 1;
720 View v = mContent.getChildAt(x,y);
721 if (mContent.animateChildToPosition(v, empty[0], empty[1],
758 mTargetCell = mContent.findNearestArea(
761 mTargetCell[0] = mContent.getCountX() - mTargetCell[0] - 1;
962 int countX = mContent.getCountX();
963 int countY = mContent.getCountY();
984 mContent.setGridSize(countX, countY);
996 int width = getPaddingLeft() + getPaddingRight() + mContent.getDesiredWidth();
1079 mContent.getDesiredHeight());
1084 return Math.max(mContent.getDesiredWidth(), MIN_CONTENT_DIMEN);
1094 int width = getPaddingLeft() + getPaddingRight() + mContent.getDesiredWidth();
1103 mContent.setFixedSize(getContentAreaWidth(), mContent.getDesiredHeight());
1105 mContent.setFixedSize(getContentAreaWidth(), getContentAreaHeight());
1119 mContent.removeAllViews();
1123 mContent.getVacantCell(vacant, 1, 1);
1135 mContent.addViewToCellLayout(v, insert ? 0 : -1, (int)info.id, lp, true);
1141 return mContent.getShortcutsAndWidgets().getChildCount();
1145 return mContent.getShortcutsAndWidgets().getChildAt(index);
1273 mContent.addViewToCellLayout(currentDragView, -1, (int) si.id, lp, true);
1335 mContent.removeView(v);
1347 for (int j = 0; j < mContent.getCountY(); j++) {
1348 for (int i = 0; i < mContent.getCountX(); i++) {
1349 View v = mContent.getChildAt(i, j);
1368 for (int j = 0; j < mContent.getCountY(); j++) {
1369 for (int i = 0; i < mContent.getCountX(); i++) {
1370 View v = mContent.getChildAt(i, j);