This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
private Drawable mLoadingDrawable; | |
private Transformation mTransformation; | |
private AlphaAnimation mAnimation; | |
private boolean mHasAnimation; | |
private Interpolator mInterpolator; | |
private long mLastDrawTime; | |
private static final int ANIMATION_RESOLUTION = 200; | |
private static final int MAX_LEVEL = 10000; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* | |
*/ | |
package us.liuyong.widget; | |
import android.view.View; | |
import android.view.ViewGroup.LayoutParams; | |
import android.view.animation.Animation; | |
import android.view.animation.Transformation; |
NewerOlder