0

現在、Android で xml ファイルのデータを表示しようとしています。プロジェクトの開発後、プロジェクトを実行するだけで、エミュレーターは実行されますが、作成したアプリケーションは起動しません。

この問題を克服するにはどうすればよいですか?

ログキャット

[2012-09-03 14:37:28 - GridView_test] Android Launch!
[2012-09-03 14:37:28 - GridView_test] adb is running normally.
[2012-09-03 14:37:28 - GridView_test] No Launcher activity found!
[2012-09-03 14:37:28 - GridView_test] The launch will only sync the application package on the  device!
[2012-09-03 14:37:28 - GridView_test] Performing sync
[2012-09-03 14:37:29 - GridView_test] Automatic Target Mode: using existing emulator 'emulator-5556' running compatible AVD 'Android22-API-8'
[2012-09-03 14:37:29 - GridView_test] Uploading GridView_test.apk onto device 'emulator-5556'
[2012-09-03 14:37:30 - GridView_test] Installing GridView_test.apk...
[2012-09-03 14:37:34 - GridView_test] Success!
[2012-09-03 14:37:34 - GridView_test] \GridView_test\bin\GridView_test.apk installed on device
[2012-09-03 14:37:34 - GridView_test] Done!

前もって感謝します!..

4

1 に答える 1

3

ファイル内のメイン アクティビティの<intent-filter>タグを変更する必要がありAndroidManifest.xmlます。

<application android:name="......"
android:icon="@drawable/app_icon"
android:label="@string/app_name" >
    <activity android:name=".yourActivity">
    <intent-filter>
        <action android:name="android.intent.action.MAIN" />
        <category android:name="android.intent.category.LAUNCHER" />
    </intent-filter>
</activity>

つまり、アクティビティ<action><category>

詳しくはこちらをご覧ください。

于 2012-09-03T09:18:50.803 に答える