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

Adding Action Bar in ListActivity

In my ListActivity i have to display an action bar but i cant. i have searched on the internet, all links tell me to change my app theme to holo.light but that doesnt work as when i do that my ribbit app crashes. I think that is because my main activity is extending action bar activity Main activity displays the action bar I want the action bar in my recipientsActivtity which extends ListActivty. How can i do that in android Studio?

1 Answer

Julien Fischer
Julien Fischer
9,283 Points

Instead of ListActivity you have to extend your activity with ActionBarActivity and use a ListView to display the list, this is the only solution I find.