我只是根据这个http://developer.android.com/sdk/installing.html设置eclipse来启动android开发。我的问题似乎与此问题类似:Android app not launching on emulator,但解决方案无效。我正在尝试运行一个简单的hello应用程序。我没有得到任何错误,但这是控制台:
[2011-06-01 10:03:53 - HelloAndroid] ------------------------------
[2011-06-01 10:03:53 - HelloAndroid] Android Launch!
[2011-06-01 10:03:53 - HelloAndroid] adb is running normally.
[2011-06-01 10:03:53 - HelloAndroid] Performing com.example.helloandroid.HelloAndroid activity launch
[2011-06-01 10:04:00 - HelloAndroid] Launching a new emulator with Virtual Device 'AVD2.2'
这是我的小代码:
package com.example.helloandroid;
import android.app.Activity;
import android.os.Bundle;
import android.widget.TextView;
public class HelloAndroid extends Activity {
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
TextView tv = new TextView(this);
tv.setText("Hello, Android");
setContentView(tv);
}
}
这是清单:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.helloandroid"
android:versionCode="1"
android:versionName="1.0">
<uses-sdk android:minSdkVersion="8" />
<application android:icon="@drawable/icon" android:label="@string/app_name">
<activity android:name=".HelloAndroid"
android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>
模拟器启动并进入我可以解锁它的屏幕。模拟器似乎工作但应用程序从未启动。此外,当我运行模拟器时,我尝试通过单击“运行”来重新启动应用程序... Android应用程序和弹出框要求我选择要启动的模拟器,不显示正在运行的模拟器。
答案 0 :(得分:6)
尝试添加
<category android:name="android.intent.category.DEFAULT" />
Eclipse默认启动DEFAULT活动。如果这不起作用,请右键单击该项目,然后检查运行配置。您可以选择设置要启动的活动。
此外,您应该能够在模拟器启动器的应用程序抽屉中看到应用程序的图标。单击该图标,查看该应用是否启动。如果没有,那么问题出在你的活动中(尽管我没有看到任何错误)。
如果这两个不起作用,请尝试从命令提示符重新启动adb:
>adb kill-server
>adb start-server
答案 1 :(得分:0)
有时在类似情况下清理项目有帮助...
您是否在strings.xml文件中设置了appname?