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 Blog Reader Android App Rebuilding from Scratch Creating the Project and ListActivity

Can anyone explain why we are changing "@+id/listView1" to "@android:id/list"?

Bonus points if you can tell me why we change extends ActionBarActivity to ListActivity

1 Answer

Ricky Sparks
Ricky Sparks
22,249 Points

It needs to be set an unique ID for your listview to gain access to it.

Bonus: extending the ActionBarActivity gives you the ActionBars functionality on every API level >= 7 by extending ListActivity you can avoid adding additional projects/libraries to your project but you'll lack the ActionBar on api levels below 11