AVD启动并运行但是eclipse没有检测到

时间:2015-02-15 07:14:13

标签: android eclipse android-emulator

我的AVD正常运行,并且在进程选项卡中,有一个模拟器arm.exe,所以我非常确定它,但当我运行我的程序时,运行配置说要拿起这个AVD,我收到以下消息。

Android Launch!
[2015-02-15 00:38:50 - FirstApp] adb is running normally.
[2015-02-15 00:38:50 - FirstApp] Performing com.protyay.example.firstapp.Splash activity launch
[2015-02-15 00:38:50 - FirstApp] No active compatible AVD's or devices found. Relaunch this configuration after connecting a device or starting an AVD.

这是Manifest.xml的样子,事实上,直到昨天我一直没有测试这个应用程序的问题。一个奇怪的问题

 <application
        android:allowBackup="true"
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name"
        android:theme="@style/AppTheme" >
        <activity
            android:name=".MainActivity"
            android:label="@string/app_name" >
            <intent-filter>
                <action android:name="com.protyay.example.firstapp.MAINACTIVITY" />

                <category android:name="android.intent.category.DEFAULT" />
            </intent-filter>
        </activity>
        <activity
            android:name=".Splash"
            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>

AVD的API级别为19

2 个答案:

答案 0 :(得分:0)

试试这个,这可能会有所帮助 转到窗口 - &gt;显示视图 - &gt;其他 - &gt;设备 - &gt;重置Adb

答案 1 :(得分:0)

重置您的ADB流程。您可以在DDMS Perspective(然后是Devices窗口)中执行此操作。在右边的最后一个菜单(倒三角形 - 主要设备&#39;面板 - 应该在列表中显示您的设备的那个 - 在那里有这个选项 - 它命名为“重置ADB&#39;。

此外,您可以从命令行执行以下操作:

1. adb kill-server
2. adb start-server