I just can't get what's wrong here.
Activity.java:
...
Intent intent = new Intent(Activity.this, Service.class);
intent.putExtra(Service.KEY_TEST, "123456789");
startService(intent);
...
Service.java:
...
private Intent intent;
public static final String KEY_TEST;
@Override
public void onCreate() {
super.onCreate();
Log.d("TEST", intent.getStringExtra(KEY_TEST)); // when I remove this line,
// it works, otherwise gives NullPointerException and FC's
}
@Override
public int onStartCommand(Intent intent, int flags, int startId) {
this.intent = intent;
return START_STICKY;
}
...
The Service clearly doesn't receive the extras sent from the Activity. When I try to get any extras I sent before, the app force closes and LogCat gives NullPointerException. When I remove the line where I try to get the extras, the app doesn't force close, but I don't obviously receive the extras either.
Log.d...force closes the app. LogCat is whining about NullPointerException, so the extras are not received. When I remove the line there's no force close but I obviously don't receive my extras either. – Iiro Nov 18 '11 at 12:34