标签:android windows 源代码 java hello
很遗憾 自己没有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);
}
}
标签:android windows 源代码 java hello
原文地址:http://11336289.blog.51cto.com/11326289/1766889