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 trialAndy Hammond
5,415 PointsError in getListView().getContext()
my code
ArrayAdapter<String> adapter = new ArrayAdapter<String>(
getListView().getContext(),
android.R.layout.simple_list_item_checked, usernames);
setListAdapter(adapter);
is giving me an error.
getListView().getContext() and setListAdapter both have errors when copying into RecipientsActivity.java
cannot resolve method getListView()
cannot resolve method setListAdapter(adapter);
2 Answers
Harry James
14,780 PointsThanks Andy!
The problem is that the method getListView() is actually from the ListActivity class (See here). Therefore, you must extend ListActivity in order to use it.
Hope it helps and, if you have any questions about this, give me a shout :)
Andy Hammond
5,415 Pointswell that worked :P thanks!
Andy Hammond
5,415 Pointspublic class SignUpActivity extends ActionBarActivity
Harry James
14,780 PointsHarry James
14,780 PointsHey Andy!
What are you extending in RecipientsActivity.java?