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 trialMUZ140073 Lionell Matambanadzo
12,509 PointsUsing Intents
Finally, start an Activity for this Intent, but use the 'createChooser()' method to show a nice chooser dialog. The first parameter is the Intent, and for the second, get the String value of 'R.string.chooser_title' can you assist
/* This code is an excerpt from the onOptionsItemSelected()
* method of a custom Activity class.
*/
int itemId = item.getItemId();
if (itemId == R.id.action_share) {
Intent ShareIntent = new Intent(Intent.ACTION_SEND);
ShareIntent.setType( "text/plain");
ShareIntent.putExtra(Intent.EXTRA_TEXT,"p");
startActivity(Intent.createChooser(ShareIntent.R.string.chooser_title));
}
1 Answer
Scott Mobley-Schreibman
7,791 PointsYou're quite close. . .look again at the instructions: "the first parameter is the Intent, and for the second, get the String value of 'R.string.chooser_title.' You've got the first parameter. What do the instructions say you need for the second?