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 Intents and Multiple Activities Getting Data from an Intent

Sean Walker
Sean Walker
1,792 Points

problem with this challenge!!!!

hey everyone! here's the question: We previously added a FUEL_LEVEL to our spacecraft. Now in FlightActivity, we want to get the value that we put in the Intent. Start by declaring an Intent variable and getting the Intent used to start this Activity. and below you can see my code!it keeps giving me syntax errors and i just don't understand whyyyy! help pls! it's 10 been 10 days since i'm stuck!

FlightActivity.java
import android.os.Bundle;

public class FlightActivity extends AppCompatActivity {

    public int fuelLevel = 0;

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

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

    }
}

1 Answer

Jennifer Nordell
seal-mask
STAFF
.a{fill-rule:evenodd;}techdegree
Jennifer Nordell
Treehouse Teacher

Hi there! You're really close here! But we're trying to retrieve an integer from the intent instead of a String. So we need to use a different method than the one that you are trying to use. This is alluded to in the hint to view the documentation. Also, we need to set the value of fuelLevel to be equal to the value that we pull from the intent and give it a default value of -1. This is how I did it:

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

First, we set up a new intent variable of type Intent and get the intent. That part you did just fine! Then we assign the integer value we receive from the intent to the fuelLevel that was previously declared. If the intent has no data with the name "FUEL_LEVEL", a value of -1 will be returned instead.

Hope this helps! :sparkles: