Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialmarsh john
Courses Plus Student 605 PointsHow to get rid of Action bar?Help Me!!!!
How to get rid of Action bar it's showing text Stormy? Help Me!!!!
3 Answers
Andrew Winkler
37,739 PointsI've noticed that if you set the theme in the AndroidManifest, it seems to get rid of that short time where you can see the action bar. So, try adding this to your manifest:
<android:theme="@android:style/Theme.NoTitleBar">
Just add it to your application tag to apply it app-wide.
Chris Stringer
4,813 PointsOr on the design tab of the main activity select them and then select NoTitleBar, it's right next to the API Version
Roxana Jula
2,753 PointsGo to values->styles.xml and change from
<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
to
<style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">
marsh john
Courses Plus Student 605 Pointsmarsh john
Courses Plus Student 605 Pointsthnx for quick response, it works.