在Eclipse下照样错,
要把自动生成的代码修改的,
package com.cn.hzw.android;
import android.app.Activity;
import android.os.Bundle;
import android.widget.TextView;
public class Hello extends Activity {
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle icicle) {
super.onCreate(icicle);
//setcCntentView(R.layout.main);
TextView tv = new TextView(this);
tv.setText("这是一个测试Android helloWorld");
setContentView(tv);
}
}