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 location listener activity and I want to make toast notifications. But it will not let me pass this as the context. How should I make toast work?

share|improve this question
Can you post the activity code and the error message? You should be able to get a valid context from within an Activity. – Jim Blackler Apr 12 '11 at 20:19
The method makeText(Context, CharSequence, int) in the type Toast is not applicable for the arguments (mylocationlistener, String, int) – Seth Hikari Apr 12 '11 at 20:26
I have decided that I will make the locationlistener a sub class in the activity – Seth Hikari Apr 12 '11 at 20:34

5 Answers

up vote 6 down vote accepted

If the toast is located inside your activity class, you could yous YourActiviy.this where YourActivity is the class name. if it's outside your class, you'll need to get your activity context (pass it in the constructor etc.)

share|improve this answer
This did not work because my setup was wrong, but now does – Seth Hikari Apr 12 '11 at 21:03

You can use NameOfYourActivity.this

For example:

public class MyActivity extends Activity {

 ...
     Toast.makeText(MyActivity.this, text, duration).show();
share|improve this answer
the activity is a locationlistener so it gives the error The method makeText(Context, CharSequence, int) in the type Toast is not applicable for the arguments (mylocationlistener, String, int) – Seth Hikari Apr 12 '11 at 20:28
@Seth - locationlistener is not an activity. – Binyamin Sharet Apr 12 '11 at 20:57
You should paste your code to your OP , it will be easier for us to help you. – ccheneson Apr 12 '11 at 21:02

If you are in the inner Class then try this also

getApplicationContext()

share|improve this answer

It sounds like you are in an inner class in the Activity. If thats the case, try ActivityName.this.

share|improve this answer

For example, if you have a listener with a method called "onComplete" inside it, this code should work.

public void onComplete(String response, Object state) {
        final String response_complete = response;
        MyActivity.this.runOnUiThread(new Runnable() {
            @Override
            public void run() {
                Toast.makeText(MyActivity.this, text, duration).show();
            }
        });
    }

That should do it.

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.