I've followed a tutorial for a basic local login screen and despite following the tutorial exactly, I've hit some errors. I don't know exactly what they mean or how to solve them, could anybody help out?

http://imageshack.us/f/856/codeo.jpg/ - This is a screenshot of my current code.

Thank you.

link|improve this question
1  
press crtl+shift+o – Dr.nik Jul 11 '11 at 11:21
solve your problem? – Dr.nik Jul 11 '11 at 11:25
feedback

3 Answers

Your btn.setOnClickListener(View.OnClickListener) requires View.OnClickListener object but you're passing it DialogInterface.OnClickListener object. Hence why your code doesn't compile.

link|improve this answer
feedback

You have confused the View.OnClickListener with the DialogInterface.OnClickListener . You have also confused pasting text with posting blurry low res images of code in the cloud :-D

link|improve this answer
feedback

Use new View.OnClickListener. It is different the DialogInterface.OnClickListener which you probably imported.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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