I\'m trying to use Toast inside OnCLickListener. My code triggers the following error:
Toast
OnCLickListener
The method makeText(Context, CharSequence, int)
As The Kenny said, this is refering to the View.OnClickListener instead of your Activity. Change this, to MyActivity.this.
this
View.OnClickListener
Activity
MyActivity.this
For example,
public class MyActivity extends Activity { // ... other code here Toast.makeText(MyActivity.this, Lname, Toast.LENGTH_SHORT).show();