Mi objetivo es simple:Cuenta atrás con la vista de texto
En mi archivo xml, tengo una vista de texto llamada: textView2.
Lo que necesito es una cuenta regresiva, que cuenta regresivamente de 15 a 0, y cada vez que pasa un segundo, la vista de texto se actualiza (como: 15,14,13,12,11,10,9,8,7, 6,5,4,3,2,1,0).
Y también tendrá que obtener la hora actual de it.Something como
Si el temporizador de cuenta atrás está en la segunda 14, a continuación, hacer esto ...
yo probamos este:
new CountDownTimer(30000, 1000) {
public void onTick(long millisUntilFinished) {
int j = (int) millisUntilFinished;
TextView textic = (TextView) findViewById(R.id.textView2);
textic.setText(j);
}
public void onFinish() {
}
}.start();
¡Pero la aplicación falla! ¿Qué sucede?
Log:
11-01 13: 09: 33.029: WARN/dalvikvm (388): threadid = 1: hilo que sale con excepción no detectada (grupo = 0x40015560) 11-01 13:09: 33.049: ERROR/Android Runtime (388): excepción fatal: 11-01 principal 13: 09: 33.049: ERROR/Android Runtime (388): java.lang.RuntimeException: No se puede iniciar la actividad ComponentInfo {think.smart/think .smart.ThinkyoursmartActivity}: java.lang.NullPointerException 11-01 13: 09: 33.049: ERROR/AndroidRuntime (388): en android.app.Ac tivityThread.performLaunchActivity (ActivityThread.java:1647) 11-01 13: 09: 33.049: ERROR/AndroidRuntime (388): en android.app.ActivityThread.handleLaunchActivity (ActivityThread.java:1663) 11-01 13:09 : 33.049: ERROR/AndroidRuntime (388): en android.app.ActivityThread.access $ 1500 (ActivityThread.java:117) 11-01 13: 09: 33.049: ERROR/AndroidRuntime (388): en android.app. ActivityThread $ H.handleMessage (ActivityThread.java:931) 11-01 13: 09: 33.049: ERROR/AndroidRuntime (388): en android.os.Handler.dispatchMessage (Handler.java:99) 11-01 13 : 09: 33.049: ERROR/AndroidRuntime (388): en android.os.Looper.loop (Looper.java:123) 11-01 13: 09: 33.049: ERROR/AndroidR untime (388): en android.app.ActivityThread.main (ActivityThread.java:3683) 11-01 13: 09: 33.049: ERROR/AndroidRuntime (388): en java.lang.reflect.Method.invokeNative (Native Method) 11-01 13: 09: 33.049: ERROR/AndroidRuntime (388): en java.lang.reflect.Method.invoke (Method.java:507) 11-01 13: 09: 33.049: ERROR/AndroidRuntime (388): en com.android.internal.os.ZygoteInit $ MethodAndArgsCaller.run (ZygoteInit.java:839) 11-01 13: 09: 33.049: ERROR/AndroidRuntime (388): en com.android. internal.os.ZygoteInit.main (ZygoteInit.java:597) 11-01 13: 09: 33.049: ERROR/AndroidRuntime (388): en dalvik.system.NativeStart.main (método nativo) 11-01 13:09 : 33.049: ERROR/Android Runtime (388): Causado por: java.lang.NullPointerException 11-01 13: 09: 33.049: ERROR/Android Runtime (388): al think.smart.ThinkyoursmartActivity.onCreate (ThinkyoursmartActivity.java:34) 11-01 13: 09: 33.049: ERROR/AndroidRuntime (388): en android.app.Instrumentation.callActivityOnCreate (Instrumentation.java:1047) 11-01 13: 09: 33.049: ERROR/AndroidRuntime (388): en android.app.ActivityThread.performLaunchActivity (ActivityThread.java: 1611)
Eche un vistazo a [CountDownTimers] (http://developer.android.com/reference/android/os/CountDownTimer.html). Esto probablemente hará su vida mucho más fácil. –