Lines Matching refs:mContent

73     protected CellLayout mContent;
157 mContent = (CellLayout) findViewById(R.id.folder_content);
158 mContent.setGridSize(0, 0);
159 mContent.getChildrenLayout().setMotionEventSplittingEnabled(false);
227 mContent.removeView(mCurrentDragView);
381 mContent.setAlpha(0);
413 ObjectAnimator alphaOa = ObjectAnimator.ofPropertyValuesHolder(mContent, alpha);
424 mContent.getCountX(), mContent.getCountY()));
452 View firstChild = mContent.getChildAt(0, 0);
482 ObjectAnimator alphaOa = ObjectAnimator.ofPropertyValuesHolder(mContent, alpha);
508 mContent.removeAllViewsInLayout();
522 if (mContent.findCellForSpan(emptyCell, item.spanX, item.spanY)) {
546 if (mContent.getChildAt(item.cellX, item.cellY) != null || item.cellX < 0 || item.cellY < 0
547 || item.cellX >= mContent.getCountX() || item.cellY >= mContent.getCountY()) {
557 mContent.addViewToCellLayout(textView, insert ? 0 : -1, (int)item.id, lp, true);
589 wrap = empty[0] >= mContent.getCountX() - 1;
593 endX = y < target[1] ? mContent.getCountX() - 1 : target[0];
595 View v = mContent.getChildAt(x,y);
596 if (mContent.animateChildToPosition(v, empty[0], empty[1],
609 startX = y == empty[1] ? empty[0] - 1 : mContent.getCountX() - 1;
612 View v = mContent.getChildAt(x,y);
613 if (mContent.animateChildToPosition(v, empty[0], empty[1],
627 mTargetCell = mContent.findNearestArea((int) r[0], (int) r[1], 1, 1, mTargetCell);
749 int countX = mContent.getCountX();
750 int countY = mContent.getCountY();
771 mContent.setGridSize(countX, countY);
782 int width = getPaddingLeft() + getPaddingRight() + mContent.getDesiredWidth();
783 int height = getPaddingTop() + getPaddingBottom() + mContent.getDesiredHeight()
847 int width = getPaddingLeft() + getPaddingRight() + mContent.getDesiredWidth();
848 int height = getPaddingTop() + getPaddingBottom() + mContent.getDesiredHeight()
851 int contentWidthSpec = MeasureSpec.makeMeasureSpec(mContent.getDesiredWidth(),
853 int contentHeightSpec = MeasureSpec.makeMeasureSpec(mContent.getDesiredHeight(),
855 mContent.measure(contentWidthSpec, contentHeightSpec);
867 mContent.removeAllViews();
871 mContent.getVacantCell(vacant, 1, 1);
883 mContent.addViewToCellLayout(v, insert ? 0 : -1, (int)info.id, lp, true);
889 return mContent.getChildrenLayout().getChildCount();
893 return mContent.getChildrenLayout().getChildAt(index);
978 mContent.addViewToCellLayout(mCurrentDragView, -1, (int)item.id, lp, true);
1012 mContent.removeView(v);
1024 for (int j = 0; j < mContent.getCountY(); j++) {
1025 for (int i = 0; i < mContent.getCountX(); i++) {
1026 View v = mContent.getChildAt(i, j);
1049 for (int j = 0; j < mContent.getCountY(); j++) {
1050 for (int i = 0; i < mContent.getCountX(); i++) {
1051 View v = mContent.getChildAt(i, j);