取消选择
()
| 154 | * 取消选择 |
| 155 | */ |
| 156 | public void unCheck() { |
| 157 | if (animState != ANIM_NULL || (!isCheck)) |
| 158 | return; |
| 159 | animState = ANIM_UNCHECK; |
| 160 | animCurrentPage = animMaxPage - 1; |
| 161 | mHandler.sendEmptyMessageDelayed(0, animDuration / animMaxPage); |
| 162 | isCheck = false; |
| 163 | } |
| 164 | |
| 165 | /** |
| 166 | * 设置动画时长 |
nothing calls this directly
no outgoing calls
no test coverage detected