在学习Android

时间:2009-09-24 12:52:19

标签: android

学习Android的最佳方法是什么?我正在阅读Rogers的文章“Android应用程序开发”。但是,当我尝试以下代码时,除移动电话外没有任何输出:

package org.qwerty.com;

import android.app.Activity;
import android.os.Bundle;
import android.widget.TextView;

public class HelloWorld extends Activity {
    /** Called when the activity is first created. */
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);
        TextView tv = new TextView(this);
        tv.setText("Hello, Android");
        setContentView(tv);
    }
}

我也尝试过搜索Dalvik Debug Monitor Android emulator Output,但是我找不到可以打开hello android项目的选项。

5 个答案:

答案 0 :(得分:2)

我使用位于here的Google教程学习了Android。

向左滚动并查找“教程和示例代码”

答案 1 :(得分:1)

来自Wrox by Reto Meier的“Professional Android Development”在我看来是开始学习Android的最佳书籍。除了Google文档

答案 2 :(得分:0)

您可能会发现此article有用。我只是看了它,这是有道理的。

答案 3 :(得分:0)

答案 4 :(得分:0)

如果它正在“输出”手机,那么它可能正在启动模拟器。给它一两分钟,因为它实际上是一个运行整个操作系统的虚拟机。一旦完成启动,您的应用就会显示出来。

模拟器看起来像这样:

new emulator
(来源:android.com

或者: old text http://riddell.us/tutorial/android/android_emulator.png