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 Google Play Services Interacting with Google+ APIs Using a Share Intent

share intents

Challenge Task 1 of 4

Let's write a Share Intent that shares the Treehouse website with available apps on the user's device. Create a new Intent variable, and initialize it as a Share Intent.

CodeChallenge.java
String textToShare = "Learn something new at www.teamtreehouse.com";

// YOUR CODE HERE
 shareIntent intent= new ShareIntent();

3 Answers

Seth Kroger
Seth Kroger
56,413 Points

Intents usually don't come in different subtypes. You create an vanilla Intent passing in a constant for the action you intend to perform. (One extra hint. there isn't a "share" action but there is a "send" action which amounts to the same thing.)

dangie kroger fo helping me out. now stuck on task 3 of 4 on ShareIntents here is what i wrote Intent.putTextToShare( Intent.EXTRA_TEXT); but um getting 1 error

Intent shareIntent = new Intent(Intent.ACTION_SEND);

thnx Terry best answer ever but now im on task 3 on share intents but here is my answer please correct me

Intent.putTextToShare( Intent.EXTRA_TEXT);

FINALLY I GOT IT Intent.putExtra(Intent.EXTRA_TEXT, textToShare);