Android开发视频教学中,用的是Android 1.6版本,

本机装了2.0.1版本

在添加
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; 
即解决