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 trial

Android Build a Weather App (2015) Building the Weather UI Starting at the Center

How 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
Andrew Winkler
37,739 Points

I'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.

thnx for quick response, it works.

Chris Stringer
Chris Stringer
4,813 Points

Or on the design tab of the main activity select them and then select NoTitleBar, it's right next to the API Version

Roxana Jula
Roxana Jula
2,753 Points

Go to values->styles.xml and change from

<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">

to

<style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">