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 Sending Data to a New Activity

Rubio Salinas
Rubio Salinas
3,051 Points

intent.putextra error

when i put the Intent.putExtra line of code i get an error saying " Non-static method 'putExtra(java.lang.String, java.lang.String)' cannot be referenced from a static context "

any help would be greatly appreciated

public class MainActivity extends AppCompatActivity {

private EditText nameField;
private Button startButton;

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

    nameField = (EditText)findViewById(R.id.nameEditText);
    startButton = (Button) findViewById(R.id.startButton);

    startButton.setOnClickListener(new View.OnClickListener() {
        @Override public void onClick(View view) {



            String name = nameField.getText().toString();
            startStory(name);
        }

    } );
}

private void startStory(String name) {
    Intent intent = new Intent(this, StoryActivity.class);
    Intent.putExtra("name", name);
    startActivity(intent);
}

}

1 Answer

You've to call putExtra("name", name); method using the variable name intent with the small "i" rather than calling it using the class name.