0

我真的被这个问题吓坏了,我什么都试过了。没有任何效果。当我运行应用程序时,android 模拟器只是加载,显示主屏幕然后什么都没有发生(我没有看到我的应用程序正在运行),什么也没有。我应该怎么办?

编辑:控制台代码显示:

[2012-07-04 00:20:17 - MyAPPP] Android Launch!
[2012-07-04 00:20:17 - MyAPPP] adb is running normally.
[2012-07-04 00:20:17 - MyAPPP] Performing com.exame.myappp.MainActivity activity launch
[2012-07-04 00:20:17 - MyAPPP] Automatic Target Mode: launching new emulator with compatible AVD 'MonoForAndroid_API_8'
[2012-07-04 00:20:17 - MyAPPP] Launching a new emulator with Virtual Device 'MonoForAndroid_API_8'

LogCat 不显示任何内容

EDIT2:按要求清单:

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.exame.myappp"
android:versionCode="1"
android:versionName="1.0" >

<uses-sdk
    android:minSdkVersion="8"
    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>

4

2 回答 2

1

这可能是 Eclipse 的问题,有时当我运行 eclipse 时,我在运行模拟器时遇到同样的问题,我的应用程序无法运行,当我再次尝试运行应用程序时,我运行了一个新的模拟器。我通常发现自己在做的是构建/清理项目,重新启动 Eclipse,然后重新开始。

很抱歉老技术人员“关闭/开启”的答案,希望它能够自行解决。

于 2012-07-03T21:35:42.653 回答
0

让你的清单看起来像这样:

<?xml version="1.0" encoding="utf-8" standalone="no"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.exame.myappp"
android:versionCode="1"
android:versionName="1.0" >

<uses-sdk
    android:minSdkVersion="8"
    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>
于 2012-07-03T21:49:01.760 回答