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 Relating Users in Parse.com Selecting Friends from a List

getListView().setChoiceMode(ListView.CHOICE_MODE_MULTIPLE);

The getListView() method gets an error and i literally have no idea how to fix it. Any help?

1 Answer

The first thing I think of is maybe you're outside the scope to get the Listview attached to the activity or fragment, try attaching that method call to the activity or fragment you're displaying in, like MainActivity.getListView() or maybe MainActivity.this.getListView()?

MainActivity.getListView() worked! Thank you!