LongPressButton
LongPressButton 自定義長按時間進入倒計時的Button
CountDownTimer timer = new CountDownTimer(countDownSecond * 1000, 1000) {
? ? @Override
? ? public void onTick(long millisUntilFinished) {
? ? ? ? setText(millisUntilFinished / 1000 + "");
? ? }
? ? @Override
? ? public void onFinish() {
? ? ? ? Start();
? ? }
}; ?