Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在编写 eclipse 中的第一个android 教程,并且在编译此代码时:
Intent intent = getIntent();
它给出了错误
Intent 无法解析为类型
我如何解决它?
很可能,该import声明丢失了。尝试按Ctrl++ ,如果缺少导入语句,Eclipse 会自动添加Shift。O
import
然后查看文件顶部,看看添加了什么。它应该是这样的:
import android.content.Intent;