I am programming the first android tutorial in eclipse, and when compiling this code:
Intent intent = getIntent();
it gives the error
Intent cannot be resolved to a type
How do I fix it?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Probably, the
importstatement is missing. Try pressing Ctrl+Shift+O, Eclipse will automatically add the import statement if missing.Then look at the top of the file and see what has been added. It should be something like this: