Ali Chousein wrote: > Hi, > > Suppose that you create a HelloWorld application under Eclipse. Then > in res/values/strings.xml the following entry is created: > > <string name="app_name">Hello, Android</string> > > Now, when you launch the HelloWorld application you see the label > "Hello, Android" on top of the screen. I want to hide this label. What > is the way of doing this? > > Thank you in advance and kind regards,
Put the following in your <activity> element in the manifest: android:theme="@android:style/Theme.NoTitleBar" That will remove the title bar. -- Mark Murphy (a Commons Guy) http://commonsware.com | http://twitter.com/commonsguy Android App Developer Books: http://commonsware.com/books -- 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

