增加两个动画回调接口

This commit is contained in:
tongchenfei
2020-06-16 19:33:52 +08:00
parent c40df5ee4d
commit 67c7fd8e87
2 changed files with 24 additions and 1 deletions

View File

@@ -19,4 +19,16 @@ public interface IMogoTopViewStatusListener {
* @param view 移除的view
*/
void onViewRemoved(View view);
/**
* view添加动画开始之前
* @param view 添加的view
*/
void beforeViewAddAnim(View view);
/**
* view 移除动画开始之前
* @param view 移除的view
*/
void beforeViewRemoveAnim(View view);
}