现在的位置: 首页 > 综合 > 正文

Button cannot be resolved to a type 解决方法

2013年09月04日 ⁄ 综合 ⁄ 共 243字 ⁄ 字号 评论关闭

在添加
TextView myTextView=(TextView)this.findViewById(R.id.myTextView);
Button myButton=(Button)this.findViewById(R.id.myButton);
时,发生了"textview cannot be resolved to a type“错误,后在开头加入
import android.widget.Button;
import android.widget.TextView;
即解决
shift+ctrl+o

抱歉!评论已关闭.