Android/Timer example 썸네일형 리스트형 Android Timer Example import android.app.Activity; import android.os.Bundle; import android.os.CountDownTimer; import android.widget.TextView; public class CountDownTest extends Activity { TextView tv; //textview to display the countdown /** Called when the activity is first created. */ @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); tv = new TextView(this); this.setCon.. 더보기 이전 1 다음