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

textview cannot be resolved to a type 的解决办法

2018年05月09日 ⁄ 综合 ⁄ 共 281字 ⁄ 字号 评论关闭

在添加
TextView myTextView=(TextView)this.findViewById(R.id.myTextView);
Button myButton=(Button)this.findViewById(R.id.myButton);
时,发生了"textview cannot be resolved to a type“错误

由于Android 版本不同发生此类错误,解决办法

在开头引入

import android.widget.Button;
import android.widget.TextView;

或者 import android.widget.*;  就OK 啦

 

抱歉!评论已关闭.