回答編集履歴
1
記述ミス
answer
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
```lang-java
|
2
2
|
public class MainActivity extends Activity {
|
3
3
|
|
4
|
-
private CustomCountDownTimer timer = new
|
4
|
+
private CustomCountDownTimer timer = new CountDownTimer(100, 1 * 1000){ //1秒おき100回実行
|
5
5
|
public CustomCountDownTimer(long millisInFuture, long countDownInterval) {
|
6
6
|
super(millisInFuture, countDownInterval);
|
7
7
|
}
|