我只是在学习Android开发。我在Eclipse中创建了一个新的Android应用程序项目,它创建了一个基本的hello世界。 Eclipse启动AVD但不启动HelloWorld应用程序。它设法启动应用程序一次。我将尝试提供有关我的设置的尽可能多的信息。任何建议都将不胜感激。
当我创建一个新的Android应用程序项目时,我选择了Build SDK:Android 2.3.3 (API10)
和最低要求的SDK:API10: Android 2.3.3 (Gingerbread)
。
MainActivity.java
package com.mytest.helloworld;
import android.os.Bundle;
import android.app.Activity;
import android.view.Menu;
public class MainActivity extends Activity {
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
getMenuInflater().inflate(R.menu.activity_main, menu);
return true;
}
}
的AndroidManifest.xml
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.mytest.helloworld"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk
android:minSdkVersion="10"
android:targetSdkVersion="15" />
<application
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name=".MainActivity"
android:label="@string/title_activity_main" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>
我使用Android 2.3.3 - API Level 10
目标与皮肤Default (WVGA800)
进行了AVD。没有自定义属性。
我作为Android应用程序启动MainActivity.java
,AVD启动但HelloWorld应用程序没有启动。这是Eclipse Android控制台输出:
[2012-07-22 02:11:22 - HelloWorld] ------------------------------
[2012-07-22 02:11:22 - HelloWorld] Android Launch!
[2012-07-22 02:11:22 - HelloWorld] adb is running normally.
[2012-07-22 02:11:22 - HelloWorld] Performing com.mytest.helloworld.MainActivity activity launch
[2012-07-22 02:11:22 - HelloWorld] Automatic Target Mode: launching new emulator with compatible AVD 'Android_2.3.3'
[2012-07-22 02:11:22 - HelloWorld] Launching a new emulator with Virtual Device 'Android_2.3.3'
当我以某种方式设法让它工作时,这是控制台输出:
[2012-07-21 15:51:57 - HelloWorld] ------------------------------
[2012-07-21 15:51:57 - HelloWorld] Android Launch!
[2012-07-21 15:51:57 - HelloWorld] adb is running normally.
[2012-07-21 15:51:57 - HelloWorld] Performing com.mytest.helloworld.MainActivity activity launch
[2012-07-21 15:51:57 - HelloWorld] Automatic Target Mode: launching new emulator with compatible AVD 'Android_2.3.3'
[2012-07-21 15:51:57 - HelloWorld] Launching a new emulator with Virtual Device 'Android_2.3.3'
[2012-07-21 15:51:58 - HelloWorld] New emulator found: emulator-5554
[2012-07-21 15:51:58 - HelloWorld] Waiting for HOME ('android.process.acore') to be launched...
[2012-07-21 15:52:06 - HelloWorld] HOME is up on device 'emulator-5554'
[2012-07-21 15:52:06 - HelloWorld] Uploading HelloWorld.apk onto device 'emulator-5554'
[2012-07-21 15:52:08 - HelloWorld] Installing HelloWorld.apk...
[2012-07-21 15:52:12 - HelloWorld] Success!
[2012-07-21 15:52:12 - HelloWorld] Starting activity com.mytest.helloworld.MainActivity on device emulator-5554
[2012-07-21 15:52:13 - HelloWorld] ActivityManager: Starting: Intent { act=android.intent.action.MAIN cat=[android.intent.category.LAUNCHER] cmp=com.mytest.helloworld/.MainActivity }
记得我在创建Hello World时没有编辑任何内容。我输入的唯一内容就是项目的名称。
答案 0 :(得分:0)
启动模拟器需要时间..然后它将启动你的应用程序。
每次都不要关闭模拟器,启动它一次,然后选择这个只运行你的应用程序......
答案 1 :(得分:0)
当我跑adb devices
时,我没有看到我列出的AVD设备。我似乎需要通过运行:
adb kill-server
adb start-server
我又跑了adb devices
并看到了我的AVD设备。我的HelloWorld应用程序终于运行了。