|
▶안드로이드 1초 마다 text 를 갱신하는 프로그램 만들기.
원하는 곳에서 testStart() 함수를 호출하면 된다.
private TimerTask second; private TextView timer_text; private final Handler handler = new Handler(); public void testStart() { timer_text = (TextView) findViewById(R.id.timer); timer_sec = 0; count = 0; second = new TimerTask() { @Override public void run() { Log.i("Test", "Timer start"); Update(); timer_sec++; } }; Timer timer = new Timer(); timer.schedule(second, 0, 1000); } protected void Update() { Runnable updater = new Runnable() { public void run() { timer_text.setText(timer_sec + "초"); } }; handler.post(updater); }
android : CountDownTimer (0) | 2019.03.18 |
---|---|
android : CountDownTimer (0) | 2019.03.15 |
andoird: layout 속성 (0) | 2019.03.14 |
android : Android Intent 활용 예 (0) | 2019.03.12 |
andoid : 안드로이드 버튼 안보이게 하기 (0) | 2019.02.26 |
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |