I'm having a timer in the oncreate() like:
final Timer timer1 = new Timer();
timer1.schedule(new TimerTask() {
public void run() {
sendSMS();
}
}, 20000);
The methode sendSMS() is like:
private void sendSMS(){
float test2;
test2 = reallocation.getAccuracy(); //-> This is the line where logcat says.... NullPointerException
....
}
The logcat says:
05-30 18:32:26.962: W/dalvikvm(741): threadid=9: thread exiting with uncaught exception (group=0x4001d5a0)
05-30 18:32:26.972: E/AndroidRuntime(741): FATAL EXCEPTION: Timer-0
05-30 18:32:26.972: E/AndroidRuntime(741): java.lang.NullPointerException
05-30 18:32:26.972: E/AndroidRuntime(741): at com.eljoom.df.ActionGPS.sendSMS(ActionGPS.java:280)
Well after searching the net I believe I need a handler for the timer... but I have no clue how to implement it.
Does anybody can put me on the right track?!