Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a menu and would like to open a new Activity when the user clicks on the menu item:

@Override
    public boolean onOptionsItemSelected(MenuItem item) {
        // Handle item selection
        switch (item.getItemId()) {
        case R.id.add_symbol:
           System.out.println("ADD SYMBOL CLICKED!");
           Intent myIntent = new Intent(this.getContext(), AddStocksActivity.class);
           startActivityForResult(myIntent, 0);
            return true;
        default:
            return super.onOptionsItemSelected(item);
        }
    }

I'm not sure how to create my Intent properly

Compiler Error:

The method getContext() is undefined for the type Main
share|improve this question
What happens with the code you have? Usually you can use "this" as the context for your itnent. – Cheryl Simon Aug 27 '10 at 20:08
The method getContext() is undefined for the type Main – Sheehan Alam Aug 27 '10 at 20:11
Are you not using eclipse? You should get an error on that line in the eclipse editor – Falmarri Aug 27 '10 at 20:31

5 Answers

up vote 3 down vote accepted

Since Main extends Activity (which extends Context), you can do:

Intent myIntent = new Intent(this, AddStocksActivity.class)
share|improve this answer
1  
Oh, yeah, if you have to do this in an anonymous inner class you can follow my answer. Or you can do MyActivity.this – Falmarri Aug 27 '10 at 20:29
this is a good spot! – Jorgesys Aug 27 '10 at 20:38

this is what I do

public boolean onCreateOptionsMenu(Menu menu){
    MenuInflater inflater = getMenuInflater();
    inflater.inflate(R.menu.options_menu, menu);

    MenuItem item1 = menu.findItem(R.id.menu_item_a);
    Intent intent1 = new Intent(this, A.class);
    item1.setIntent(intent1);

    MenuItem item2 = menu.findItem(R.id.menu_item_b);
    Intent intent2 = new Intent(this, B.class);
    item2.setIntent(intent2);

}

hope it helps

share|improve this answer
you can use YourClassName.this instead of just this – achie Aug 27 '10 at 20:36

Change this.getContext() to this.getApplicationContext()

You are trying to call a method that doesn't exist.

share|improve this answer

In your activity class do

Context mContext;

In your onCreate() do

mContext = this

then in your Options thing, do

Intent myIntent = new Intent(this.getContext(), AddStocksActivity.class);
share|improve this answer
 Intent myIntent = new Intent(getApplicationContext(), AddStocksActivity.class);

or

Intent myIntent = new Intent(this, AddStocksActivity.class)
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.