private static final String LOG_TAG = "MyActivity";
Log.d(LOG_TAG, "something");
Eclipse is marking an error here. It doesn’t know any of Log.* methods, why could be that?
EDIT: Look at the IMG

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.
You cannot put
outside of the method or code block like static definitions.