很遗憾 自己没有mac电脑 只能用Windows搭建Android环境开发app 由于水平不足 第一次搭配花了很多的时间。勉强能写一个hello world


public class MainActivity extends Activity {

@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);

TextView text = new TextView(this);
text.setText("Hello World of Android! - Greetings from Java Code Geeks ");
setContentView(text);
}

}