示例#1
0
 public void big() {
   if (!expand) {
     holder.setFixedHeight(215);
     this.tAbsentLabel.show();
     this.tLatesLabel.show();
     this.absents.show();
     this.lates.show();
     expandButton.setText("/\\");
     expandButton.setGeometry(expandButton.x(), 170, expandButton.width(), expandButton.height());
     expand = true;
   } else {
     holder.setFixedHeight(101);
     this.tAbsentLabel.hide();
     this.tLatesLabel.hide();
     this.absents.hide();
     this.lates.hide();
     expandButton.setText("\\/");
     expandButton.setGeometry(expandButton.x(), 60, expandButton.width(), expandButton.height());
     expand = false;
   }
 }