1.提示The import java.util cannot be resolved;
项目buildpath不对
与原来的项目,jdk不同。
换了之后原来的没了就导致了现在这种错误,基本的java.lang或
者util包都找不到。
解决方案:
右键项目----buildpath---Configure Build Path
选择libraries,添加一个jre;
选中项目----project----clean
2.The import android cannot be resolved错误怎么办
右键工程→Bulid Path→Configure Build Path...
选择Android,如图,在Project Build Target里面勾选相应的SDK即可
3.cannot be resolved or is not a field
setContentView(R.layout.activity_main)
提示信息是:activity_main cannot be resolved or is not a
field
删掉 import android.R;再选中项目----project----clean
时间: 2024-11-10 01:38:00