Tweaking clings in response to usability testing. (5057945, 5056643)

- Updating assets
- Removing folder cling text
- Fading in folder cling after folder animation
- Highlighting different icon in allapps cling

Change-Id: I6e4fadf10b81a91296304f008644ee1d154ec5f8
This commit is contained in:
Winson Chung
2011-09-20 17:43:51 -07:00
parent 53c67ee6cb
commit 7a74ac9cd6
9 changed files with 16 additions and 26 deletions

View File

@@ -405,6 +405,11 @@ public class Folder extends LinearLayout implements DragSource, View.OnClickList
@Override
public void onAnimationEnd(Animator animation) {
mState = STATE_OPEN;
Cling cling = mLauncher.showFirstRunFoldersCling();
if (cling != null) {
cling.bringToFront();
}
}
});
oa.setDuration(mExpandDuration);