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 trialwilliam kingsley
912 Pointscan not find symbol
I am trying to give a new intent but it stats that flightStart symbol can not be found.
import android.content.Intent;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
public class LaunchActivity extends Activity {
public Button mLaunchButton;
private void flightstart()
{
Intent intent = new Intent(this, FlightActivity.class);
flightStart(intent);
}
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_launch);
mLaunchButton = (Button)findViewById(R.id.launchButton);
mLaunchButton.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
// Add your code in here!
flightStart();
}
});
}
}
1 Answer
Simon Coates
28,694 Pointsflightstart vs flightStart maybe? The missing symbol error just means that it found something where it doesn't know what it is.
william kingsley
912 Pointswilliam kingsley
912 PointsI did not see that before, gotta reread my code sometimes.
Matthew Farrell
7,215 PointsMatthew Farrell
7,215 PointsNaa it looks like you found the problem Simon.
The call should have the capital S.
private void flightStart() { Intent intent = new Intent(this, FlightActivity.class); flightStart(intent);
}