在模拟器上启动Android应用程序?

时间:2013-04-07 11:43:38

标签: java android android-emulator

我是开发Android应用程序和开发HelloWorld应用程序的新手。

@Override
    protected void onCreate(Bundle savedInstanceState) {

        super.onCreate(savedInstanceState);

        TextView text = new TextView(this);
        text.setText("Hello World");
        setContentView(text);

    }

但是当我在AVD上运行我的应用程序时,我的控制台中会有以下内容。

[2013-04-07 17:01:31 - Myapp] R.java was modified manually! Reverting to generated version!
[2013-04-07 17:01:48 - Myapp] ------------------------------
[2013-04-07 17:01:48 - Myapp] Android Launch!
[2013-04-07 17:01:48 - Myapp] adb is running normally.
[2013-04-07 17:01:50 - Myapp] Performing com.example.myapp.MainActivity activity launch
[2013-04-07 17:01:53 - Myapp] Automatic Target Mode: using existing emulator 'emulator-5554' running compatible AVD 'dv'
[2013-04-07 17:01:53 - Myapp] Uploading Myapp.apk onto device 'emulator-5554'
[2013-04-07 17:01:54 - Myapp] Installing Myapp.apk...
[2013-04-07 17:02:05 - Myapp] Success!
[2013-04-07 17:02:05 - Myapp] Starting activity com.example.myapp.MainActivity on device emulator-5554

模拟器也会启动。但它不会打印HelloWorld。

enter image description here

如何让我的应用运行?

2 个答案:

答案 0 :(得分:1)

给模拟器一些时间(大约10分钟)。他需要很长时间才能启动。如果你等了很长时间,那么android徽标就会消失,你将收到主屏幕。

你可以看看我写的关于如何加速模拟器的博客文章:

Speed UP the Emulator

答案 1 :(得分:0)

Android模拟器可能需要一段时间才能加载。有时它可能需要三到四分钟才能看到android主屏幕