Home | History | Annotate | Download | only in launcher2

Lines Matching refs:fi

2036                 FolderIcon fi = (FolderIcon) v;
2037 handleFolderClick(fi);
2228 private void copyFolderIconToImage(FolderIcon fi) {
2229 final int width = fi.getMeasuredWidth();
2230 final int height = fi.getMeasuredHeight();
2251 float scale = mDragLayer.getDescendantRectRelativeToSelf(fi, mRectForFolderAnimation);
2259 fi.draw(mFolderIconCanvas);
2261 if (fi.getFolder() != null) {
2262 mFolderIconImageView.setPivotX(fi.getFolder().getPivotXForIconAnimation());
2263 mFolderIconImageView.setPivotY(fi.getFolder().getPivotYForIconAnimation());
2271 if (fi.getFolder() != null) {
2272 fi.getFolder().bringToFront();
2276 private void growAndFadeOutFolderIcon(FolderIcon fi) {
2277 if (fi == null) return;
2282 FolderInfo info = (FolderInfo) fi.getTag();
2284 CellLayout cl = (CellLayout) fi.getParent().getParent();
2285 CellLayout.LayoutParams lp = (CellLayout.LayoutParams) fi.getLayoutParams();
2290 copyFolderIconToImage(fi);
2291 fi.setVisibility(View.INVISIBLE);
2299 private void shrinkAndFadeInFolderIcon(final FolderIcon fi) {
2300 if (fi == null) return;
2305 final CellLayout cl = (CellLayout) fi.getParent().getParent();
2309 copyFolderIconToImage(fi);
2320 fi.setVisibility(View.VISIBLE);
2376 FolderIcon fi = (FolderIcon) mWorkspace.getViewForTag(folder.mInfo);
2377 shrinkAndFadeInFolderIcon(fi);