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 Sending Messages Selecting Recipients

Error 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

  1. cannot resolve method getListView()

  2. cannot resolve method setListAdapter(adapter);

Harry James
Harry James
14,780 Points

Hey Andy!

What are you extending in RecipientsActivity.java?

2 Answers

Harry James
Harry James
14,780 Points

Thanks 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 :)

well that worked :P thanks!

public class SignUpActivity extends ActionBarActivity