Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

Android Build an Interactive Story App (Retired) Intents and Multiple Activities Getting Data from an Intent

Ashley Stewart
Ashley Stewart
3,519 Points

Can't find the right method

For the code challenge I am totally confused, if it's suppost to be e.g. putExtra, getIntExtra. Also I am confused if I need to start a new line- ( under where it says add your code here). I don't think I have set it out right.

FlightActivity.java
import android.os.Bundle;

public class FlightActivity extends Activity {

  public int mFuelLevel = -1;

  @Override
  protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_flight);

    // Add your code below!
    Intent intent= getIntent();
    Intent= getIntExtra("FUEL_LEVEL", defaultValue -1);


  }
}

1 Answer

Hi Ashley,

You're very close with that answer; you clearly understand what's going on!

Just a couple of points. The instance of Intent that you create should be used to call the getIntExtra() method on. Do that using dot notation. And once you've done that, assign the value it returns (gets) into the existing mFuelLevel variable. Don't change the value of that variable before the onCreate method; leave that as zero.

Your code will end up looking like this - I've just included the bits you need to add; not the rest:

    // Add your code below!
    Intent intent = getIntent();
    mFuelLevel = intent.getIntExtra("FUEL_LEVEL", -1);

I hope that helps,

Steve.

Ashley Stewart
Ashley Stewart
3,519 Points

Thanks Steve, thats very helpful.