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

can not find symbol

It is saying can not find symbol and is pointing tot he . attaching intent to getStringExtra().

FlightActivity.java
import android.os.Bundle;

public class FlightActivity extends Activity {

  public int mFuelLevel = 0;
  public String name = "";

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

    // Add your code below!
   Intent intent = getIntent();
   name = intent.getStringExtra("FUEL_LEVEL");


  }
}

2 Answers

Gavin Ralston
Gavin Ralston
28,770 Points

You're getting that message because there's no String Extra named "FUEL_LEVEL" in the Intent.

A couple of points for the second part of the challenge:

mFuelLevel is what you want to update, not name.

There's a link in the challenge text which leads you to the documentation for the method you want to use.

You're trying to get the "FUEL_LEVEL" value, and you'll also want to set the default value to -1 on your method call, which is getIntExtra()

 Intent intent = getIntent();
 mFuelLevel = intent.getIntExtra("FUEL_LEVEL", -1);

you are suppossed to use the method getIntExtra() instead because you are trying to retrieve a value that is an integer and not a String