예제 #1
0
 public void setTurnType(TurnType turnType) {
   boolean vis = updateVisibility(turnType != null);
   if (turnDrawable.setTurnType(turnType) || vis) {
     if (horisontalMini) {
       setImageDrawable(turnDrawable, false);
     } else {
       setTopImageDrawable(
           turnDrawable,
           turnType == null || turnType.getExitOut() == 0 ? "" : turnType.getExitOut() + "");
     }
   }
 }