Nick Owens wrote: > Mark: > > But that's actually what I have set now: > > <activity android:name=".ResourcesList" android:label="@string/app_name" > android:theme="@android:style/Theme.Light"> > > This is the main activity w/ the launcher intent. It's also the label that > shows up in the App list. Is there any way to specify the label that shows > up as the App name in the App list to be different than the label on the > launcher activity?
Try the android:label attribute on the <application> element. The one on <activity> controls the launcher icon. The one on <application> should control what shows up in the application list. -- Mark Murphy (a Commons Guy) http://commonsware.com | http://twitter.com/commonsguy Android Training in NYC: 10-11 April 2010: http://guruloft.com -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en

