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 trialZachery Roberts
1,478 PointsBuild an Interactive Story app. Intent help!!
I have not used int while using Intent
import android.os.Bundle;
public class FlightActivity extends Activity {
public int mFuelLevel = 0;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_flight);
// Add your code below!
Intent intent = getIntent();
int getIntExtra (String "FUEL_LEVEL", int -1);
startActivity(intent);
}
}
1 Answer
Lukas Baumgartner
14,817 PointsYou need to specify where you want to get the IntExtra from :) Do you know what I mean?
For example:
String coolText = mEditText.getText().toString();
I GET my text from my EditText and store it in a String variable.
It's pretty much the same with your problem. Try to store the intExtra that you GET from your intent in an appropriate variable.
Zachery Roberts
1,478 PointsZachery Roberts
1,478 PointsAwesome! Thank you so much.
The example you provided really helped me to see what I was doing wrong.