您的位置:首页 > 其它

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

2012-10-28 03:32 435 查看
在添加

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 啦
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: