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 Blog Reader Android App Using Intents to Display and Share Posts Easy Sharing with Intents

Using 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

CodeChallenge.java
/* 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

You'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?