
As Google TTS was recently updated, a new feature (Number Processing) was created.Tap Speaking voice (engine, male / ...) from the top left menu of the app, then tap the Settings icon on the right side of the Preferred engine. Then turn off the Number Processing switch. Then the app won't say ': colon' anymore. Please check below 2 pictures. https://play.google.com/store/apps/developer?id=Comost..

광고 없음. 완전 무료 남은 시간(Timer) / 지난시간(Stopwatch)을 말(음성)로 알려주므로 화면을 보지 않고도 시간의 흐름을 알 수 있습니다. - 말하는(음성) 타이머, 스톱워치 무료 다운로드 https://play.google.com/store/apps/details?id=com.comostudio.speakingtimer 말하는 타이머 스톱워치 - Google Play 앱 남은 시간(Timer) / 지난시간(Stopwatch)을 말(음성)로 알려주므로 화면을 보지 않고도 시간의 흐름을 알 수 있습니다. 타이머 작동 중 화면이 꺼지지 않아 눈으로도 확인이 가능합니다. 타이머 종료 후 삐삐음 후 자동해제 시간을 설정할 수 있습니다.(5초 ~ 60초) 단순한 삐삐음 대신 본인의 폰에 있는 음악..
일정, 특정 시간 후에 어떤 작업을 해야 할 경우 아래와 같이 타이머를 쓸 수 있다. 하지만 이렇게 사용할 경우 TimerTask is scheduled already 에러를 만나 앱을 죽일 수 있다. public void stopTimer() { mTask = new TimerTask() { @Override public void run() { mTimer = new Timer(); ....... }; mTimer = new Timer(); if(mTimer != null) { mTimer.schedule(mTask, 10000); ....} 이 경우에는 아래와 같은 방법으로 에러를 피할 수 있다. public StropTimerTask stopTimerTask; public void reSchedul..