运行应用程序时,仅查看主屏幕,而不是我的应用程序

时间:2012-07-03 21:23:03

标签: java android eclipse

我真的很害怕这个问题,我尝试过任何事情。什么都行不通。当我运行应用程序时,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>

2 个答案:

答案 0 :(得分:1)

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

对不起老技师“开/关”的回答,希望它自行解决。

答案 1 :(得分: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>