Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am trying to use Toast inside OnCLickListner and am getting the following error

The method makeText(Context, CharSequence, int) in the type Toast is not applicable for the arguments (new View.OnClickListener(){}, String, int)

Code:

    Button register = (Button) findViewById(R.id.register);
    register.setOnClickListener(new View.OnClickListener() {
        public void onClick(View arg0) {
            EditText name = (EditText)findViewById(R.id.name);
            String Lname = name.getText().toString();

            Toast.makeText(this, Lname, Toast.LENGTH_SHORT).show();



        }
    });
share|improve this question

6 Answers

up vote 52 down vote accepted

As The Kenny said, this is refering to the View.OnClickListener instead of your Activity. Change this, to MyActivity.this.

For example,

public class MyActivity extends Activity {
// ... other code here
Toast.makeText(MyActivity.this, Lname, Toast.LENGTH_SHORT).show();
share|improve this answer
2  
thanks a lot buddy – Harsha M V Dec 25 '10 at 20:26
2  
MyActivity.this. Thanks. Couldn't remember how to refer to the this of the enclosing class. – The-Kenny Dec 25 '10 at 20:28
1  
The Kenny - I can't tell you how many times I've seen questions just like this on SO. Every single time I have to look it up in my source code. You'd think I would learn. – Computerish Dec 25 '10 at 20:31

this is in this case the instance of the anonymous subclass of View.OnClickListener. You have to refer to the this of the class where you create the anonymous class.

share|improve this answer
Thanks a lot. This works :) – Harsha M V Dec 25 '10 at 20:27

Anywhere, just use the following:

((Activity) mContext).runOnUiThread(new Runnable() {
                    public void run() {
                        Toast my_toast = Toast.makeText(mContext, "YOUR TEXT OR STRING", Toast.LENGTH_LONG);
                        my_toast.setGravity(Gravity.CENTER, 0, 0);
                        my_toast.show();
                    }
                });

You just need to define at the top of your activity (just after the onCreate):

mContext = this;

Also, see that I decomposed it a bit to be able to handle the gravity as I want (sometimes you may want the toast to appear at the center of the screen)...

share|improve this answer

You can use getApplicationContext() as well.

Documentation at http://developer.android.com/reference/android/content/Context.html#getApplicationContext%28%29

share|improve this answer

Use MyActivity.this as this refers to your onclickListener.

share|improve this answer

another approach to achieve the same thing would be to implement the OnClickListener interface, this way you would have have the onClick event handler as a method within the main body of the activity and thus you could use "this". This way the class itself is the listener for the click event, this also means that the onClick event can be reused for other buttons that might dispatch a click event ( to handle this you would put a if/switch within the onClick method checking for the id of the View passed in ie if( arg0.getid() == R.id.register )..

public class MyActivity extends Activity implements OnClickListener

.

Button register = (Button) findViewById(R.id.register);
register.setOnClickListener(this); 

.

public void onClick(View arg0) {
        EditText name = (EditText)findViewById(R.id.name);
        String Lname = name.getText().toString();

        Toast.makeText(this, Lname, Toast.LENGTH_SHORT).show();



    }
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.