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 trialMartin Erlic
58 PointsgetListView 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
16,379 PointsWhat 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.
Martin Erlic
58 PointsMartin Erlic
58 PointsNovice 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.