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

converting int data type to string

It seems like my code is incorrect.Anyone who might be willing to give a helping hand?

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);

        Intent intent = getIntent();
        int fuelLevel = intent.getIntExtra(fuelLevel, 0);// Add your code below!

    }
}

1 Answer

Seth Kroger
Seth Kroger
56,413 Points

The first argument of any of the get___Extra() methods is a String name that is the same as the name used in putExtra() when you sent the intent from elsewhere. fuelLevel is just the variable name you use to store it when you get it from the Intent. You should see the name you should use in the challenge instructions.