Browse Source

加载结束后,结束loading动画

master
XiaXiang 7 years ago
parent
commit
df217f5881
  1. 7
      designer/src/com/fr/design/mainframe/alphafine/cell/model/AlphaCellModel.java
  2. 9
      designer/src/com/fr/design/mainframe/alphafine/cell/model/MoreModel.java

7
designer/src/com/fr/design/mainframe/alphafine/cell/model/AlphaCellModel.java

@ -109,4 +109,11 @@ public abstract class AlphaCellModel implements Comparable {
}
return this.getName().compareTo(cellModel.getName());
}
/**
* 恢复正常状态
*/
public void resetState() {
}
}

9
designer/src/com/fr/design/mainframe/alphafine/cell/model/MoreModel.java

@ -16,11 +16,11 @@ public class MoreModel extends AlphaCellModel {
super(name, content, CellType.MORE);
this.needMore = needMore;
this.contentType = type;
setLoading(true);
}
public MoreModel(String name) {
super(name, null, CellType.MORE);
this.needMore = false;
this(name, true);
}
public MoreModel(String name, boolean isLoading) {
@ -51,6 +51,11 @@ public class MoreModel extends AlphaCellModel {
}
@Override
public void resetState() {
setLoading(false);
}
public boolean isLoading() {
return isLoading;
}

Loading…
Cancel
Save