Home | History | Annotate | Download | only in launcher2

Lines Matching defs:fi

2063                 FolderIcon fi = (FolderIcon) v;
2064 handleFolderClick(fi);
2286 private void copyFolderIconToImage(FolderIcon fi) {
2287 final int width = fi.getMeasuredWidth();
2288 final int height = fi.getMeasuredHeight();
2309 float scale = mDragLayer.getDescendantRectRelativeToSelf(fi, mRectForFolderAnimation);
2317 fi.draw(mFolderIconCanvas);
2319 if (fi.getFolder() != null) {
2320 mFolderIconImageView.setPivotX(fi.getFolder().getPivotXForIconAnimation());
2321 mFolderIconImageView.setPivotY(fi.getFolder().getPivotYForIconAnimation());
2329 if (fi.getFolder() != null) {
2330 fi.getFolder().bringToFront();
2334 private void growAndFadeOutFolderIcon(FolderIcon fi) {
2335 if (fi == null) return;
2340 FolderInfo info = (FolderInfo) fi.getTag();
2342 CellLayout cl = (CellLayout) fi.getParent().getParent();
2343 CellLayout.LayoutParams lp = (CellLayout.LayoutParams) fi.getLayoutParams();
2348 copyFolderIconToImage(fi);
2349 fi.setVisibility(View.INVISIBLE);
2357 private void shrinkAndFadeInFolderIcon(final FolderIcon fi) {
2358 if (fi == null) return;
2363 final CellLayout cl = (CellLayout) fi.getParent().getParent();
2367 copyFolderIconToImage(fi);
2378 fi.setVisibility(View.VISIBLE);
2434 FolderIcon fi = (FolderIcon) mWorkspace.getViewForTag(folder.mInfo);
2435 shrinkAndFadeInFolderIcon(fi);