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
Ronny Perez
29,956 PointsBlog reader app last stage last code challenge 4 of 4
Can some one tell me what I'm doing wrong because I know I'm using the onChooser method right or so I think.
Intent shareIntent = new Intent(Intent.ACTION_SEND);
shareIntent.setType("text/plain");
shareIntent.putExtra(Intent.EXTRA_TEXT, "hfgrg");
startActivity(Intent.createChooser(shareIntent, getString(R.string.share_chooser_title)));
1 Answer
Ben Jakuben
Treehouse TeacherSo close! Just compare the string ID you are using with the one in the instructions.