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 trialCristian Gerardo Hernandez Barrios
28,382 PointsWhere is my problem or my error?
I'm looking to the official documentation of Android and i don't get an answer, please give me a guide to look my error.
Thanks!
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", int -1);
}
}
2 Answers
Seth Kroger
56,413 PointsThere are get___Extra() methods for many variable types. If the fuel level is an int
then perhaps getStringExtra() isn't the correct method to use. (Also you don't need the int
declaration on the second argument, just -1 should suffice)
Seth Kroger
56,413 PointsPosting like that on someone else's question probably probably wasn't the best way to ask for help. Post was deleted for profanity.