feat:fix view has no superview

This commit is contained in:
pengfei.zhou
2019-11-26 11:33:08 +08:00
parent 1f0a1a5e0a
commit a5b07949ba
2 changed files with 21 additions and 1 deletions

View File

@@ -0,0 +1,20 @@
package pub.doric.pullable;
/**
* @Description: pub.doric.pullable
* @Author: pengfei.zhou
* @CreateDate: 2019-11-25
*/
public interface IPullable {
void startAnimation();
void stopAnimation();
/**
* Set the amount of rotation to apply to the progress spinner.
*
* @param rotation Rotation is from [0..2]
*/
void setProgressRotation(float rotation);
}