Binder Thread failed
08-27 22:17:20.980: INFO/AndroidRuntime(299): NOTE: attach of thread 'Binder Thread #3' failed
This is LogCat information please help 开发者_StackOverflow中文版me.
Fairly certain it is not related to your app. Filter your logcat with AndroidRuntime and you will see that message right after "Shutting down VM" and a few others that start with "AndroidRuntime START" and the grouping repeats with different pid's. To me, it looks like some kind of system maintenance, but that is a guess.
If you look at your console log(which is most of the time impractical), you'll find the answer. You didn't add the Launcher for one of your activities. try to add this lines in your manifest file (to the activity that you want your application to start with):
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
精彩评论