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 Self-Destructing Message Android App Retrieving and Viewing Messages Creating a Custom List Adapter for Messages

getListView and setListAdapter deprecated? Where are these even being pulled from?

These don't seem to be standalone method calls. What are these and how can I use them?

1 Answer

Andrew Sheragy
Andrew Sheragy
16,379 Points

What is the parent class your using? These only work with ListActivity and ListFragment so if your not using one of those they are not available. But you don't NEED them, there are other ways to accomplish the same task.

Novice mistake, but I suppose I am a novice! I need to learn to not get so frustrated quickly. Haha. I was extended ActionBarActivity for some odd reason, instead of ListActivity. Problem solved! Thanks.