Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I need to move an object from an activity to a service. This is my attempt at the Activity side.

      Waveform waveform = new Waveform();
      Intent intent = new Intent(this, StimulationService.class);
      Bundle bundle = new Bundle();
      bundle.putParcelable("test", (Parcelable) waveform);
      intent.putExtras(bundle);
      startService(intent);

I have placed this code in the onStart() function in the service.

        Bundle bundle = this.getIntent().getExtras();
        if(bundle!=null)
        mWaveform = bundle.getParcelable(waveform);

I'm getting errors for the function "getIntent" and "waveform" inside the getParcelable(). Any help or guidance is appreciated.

share|improve this question

2 Answers

up vote 0 down vote accepted
  1. Services don't have a getIntent method. Instead the intent is passed in as an argument to the onStart method. So you should use that parameter instead.
  2. The getParcelable method takes a String, which in the case of your test code, should be "test".
share|improve this answer

In order to place an object into a Bundle you need to make that objects Class implement Parcelable. Here you can see how to use Parcelable Android Parcelable Example.

Then on your onStart (Intent intent, int startId) method you get the object from the Intent :

  public void onStart(Intent intent, int startId) {
        Wafeform waveform=intent.getExtras().getParcelable("test");
  }
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.