2013-06-27 4 views
0

방금 ​​졸업 프로젝트를 시작했습니다. 기본 활동 인터페이스를 만들었지 만 에뮬레이터 또는 내 모바일에 설치하면 설치되지 않았거나 실행되지 않습니다. android 응용 프로그램이 설치되어 있지만 열리지 않음

개방 내가 콘솔이 얻을

[2013-06-27 14:46:26 - ahliaevents] Automatic Target Mode: using existing emulator 'emulator-5554' running compatible AVD 'nexus' 
[2013-06-27 14:46:26 - ahliaevents] Uploading ahliaevents.apk onto device 'emulator-5554' 
[2013-06-27 14:46:30 - ahliaevents] Installing ahliaevents.apk... 
[2013-06-27 14:46:42 - ahliaevents] Success! 
[2013-06-27 14:46:42 - ahliaevents] \ahliaevents\bin\ahliaevents.apk installed on device 
[2013-06-27 14:46:42 - ahliaevents] Done! 

답변

1

넣어 : 일에 대한 매니페스트에서 <activity> 태그에

<intent-filter> 
    <action android:name="android.intent.action.MAIN" /> 
    <category android:name="android.intent.category.LAUNCHER" /> 
</intent-filter> 

e 설치시 열리고 실행 프로그램에서 클릭하려는 활동.

+0

답장을 보내 주셔서 감사합니다. –

관련 문제