On Wed, Aug 25, 2010 at 3:34 PM, jotobjects <[email protected]> wrote: > Any ideas?
Don't use the title bar. Get rid of it via Theme.NoTitleBar and put your own "title bar" at the top of your activity. Also, you have a bug in your manifest: > <application > android:label="@string/app_name" > android:icon="@drawable/mainicon"> > > <activity android:name=".LifeStream" > android:label="@string/lifestream_title"> > <intent-filter label="@string/app_name"> You are missing the android: namespace prefix on the label attribute. I do not know that this label will be used for the icon, but it is certainly worth a try. -- Mark Murphy (a Commons Guy) http://commonsware.com | http://github.com/commonsguy http://commonsware.com/blog | http://twitter.com/commonsguy _The Busy Coder's Guide to Android Development_ Version 3.1 Available! -- 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

