java - Repeating application in the Droid menu -
just wondering if has seen problem , knows might wrong. i've constructed of library has on main page select a, b, c ... etc. , opens page buttons whichever choice is. problem when load app onto phone has 1 app button whole app , has 1 button each a, b, c... etc .classes in can click on of , opens directly phones menu. menu has been spammed , don't think people appreciate that. have idea might be. ive made application has library type thing in before , problem never occurred.
remove main , launcher intents other activities.
http://developer.android.com/guide/topics/intents/intents-filters.html
activities can initiate applications have filters "android.intent.action.main" specified action. if represented in application launcher, specify "android.intent.category.launcher" category:
<intent-filter . . . > <action android:name="code android.intent.action.main" /> <category android:name="code android.intent.category.launcher" /> </intent-filter>
also, work on accept rate.
Comments
Post a Comment