1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94
| public static Button sActionBarDownload; public static FrameLayout sParentView; protected ImageView mImageSwitcher; public ImageView mAnimationImageView = null;
sParentView = (FrameLayout) findViewById(R.id.parent_view); mActionBarContainer = (ActionBarContainer) findViewById(R.id.actionbar); sActionBarDownload = (Button) findViewById(R.id.btn_download_recommend);
private void iconFlyOutAnimation(final AppInfoDataBean app, final View v) { int[] location = new int[2]; mImageSwitcher.getLocationInWindow(location); int width = mImageSwitcher.getWidth(); int height = mImageSwitcher.getHeight();
if (MyActivity.sParentView != null) { int[] locationRelative = new int[2]; MyActivity.sActionBarDownload.getLocationInWindow(locationRelative);
mAnimationImageView = new ImageView(getContext()); FrameLayout.LayoutParams params = new FrameLayout.LayoutParams(width, height); params.leftMargin = locationRelative[0] - location[0]; params.topMargin = location[1] - locationRelative[1];
ImageView iconImage = (ImageView) mImageSwitcher.getCurrentView(); mAnimationImageView.setImageDrawable(iconImage.getDrawable()); MyActivity.sParentView.addView(mAnimationImageView, params);
int[] locationDst = new int[2]; locationDst[0] = MyActivity.sActionBarDownload.getWidth(); locationDst[1] = MyActivity.sActionBarDownload.getHeight();
int destXp = locationDst[0] / 2; int destYp = locationDst[1] / 2; int destX = params.leftMargin - destXp; int destY = params.topMargin - destYp + DrawUtils.dip2px(20); Animation translateAnimation = new TranslateAnimation(-destX, DrawUtils.dip2px(12), 0, -destY); translateAnimation.setDuration(600); Animation scaleAnimation = new ScaleAnimation(1, 0.1f, 1, 0.1f, Animation.RELATIVE_TO_SELF, 0.5f, Animation.RELATIVE_TO_SELF, 0.5f); scaleAnimation.setDuration(600); Animation rotateAnimation = new RotateAnimation(0f, 720, Animation.RELATIVE_TO_SELF, 0.5f, Animation.RELATIVE_TO_SELF, 0.5f); rotateAnimation.setDuration(600);
AnimationSet animationSet = new AnimationSet(true); animationSet.setInterpolator(new DecelerateInterpolator(2.0f));
animationSet.addAnimation(rotateAnimation); animationSet.addAnimation(scaleAnimation); animationSet.addAnimation(translateAnimation);
animationSet.setAnimationListener(new AnimationListener() { @Override public void onAnimationEnd(Animation animation) { if (mAnimationImageView != null && mAnimationImageView.getTag() == animation) { MyActivity.sParentView.removeView(mAnimationImageView);
mAnimationImageView = null; downLoad(app); } }
@Override public void onAnimationRepeat(Animation animation) {
}
@Override public void onAnimationStart(Animation animation) {
} });
mAnimationImageView.startAnimation(animationSet); mAnimationImageView.setTag(animationSet); } }
|