0

Eclipse に 3 つのプロジェクトがありますが、Android エミュレーターが 3 つ目のアプリケーションを表示しない理由がわかりません。

実行すると、コンソール ウィンドウに次のように表示されます。

Android Launch!
adb is running normally.
Performing kokas.exercise.xml.ReadingXMLActivity activity launch
Automatic Target Mode: launching new emulator with compatible AVD 'AVD2.33'
Launching a new emulator with Virtual Device 'AVD2.33'
New emulator found: emulator-5554
Waiting for HOME ('android.process.acore') to be launched...

XML マニフェスト :

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

<uses-sdk android:minSdkVersion="10" />
<uses-permission android:name="android.permission.INTERNET"/>

<application
    android:icon="@drawable/ic_launcher"
    android:label="@string/app_name" >
    <activity
        android:name=".ReadingXMLActivity"
        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>

他に確認することはありますか?私のマシンは Windows 7 64 ビットを実行しています。

4

2 に答える 2

0

このような問題が発生した場合は、プロジェクトで adb uninstall を実行し、再インストールします。

これを試して

adb uninstall kokas.exercise.xml.ReadingXMLActivity

次に、Eclipse を使用してアプリケーションを再インストールします。

また、エミュレーターのバージョンが、アプリケーションが使用しているバージョンと同じか新しいものであると確信していますか?

于 2012-06-13T07:46:38.277 に答える
0

ログによると、アプリケーションはまだ正常に起動されていません..

Waiting for HOME ('android.process.acore') to be launched

アプリケーションパッケージ名が実行中のプロセスに存在する場合、「デバイス」タブの下のDDMSでこれを確認できますか?.....

このリンクのように

可能であれば、これをマニフェストに入れます

アプリケーション タグ android:debuggable="true" 内

于 2012-06-13T07:35:36.673 に答える