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 trialChris Grant
Courses Plus Student 1,717 PointsIntent.createChooser not found??
What's wrong with this code, can't figure it out?
int itemId = item.getItemId();
if (itemId == R.id.action_share) {
// Add code here!
Intent sintent = new Intent(Intent.ACTION_SEND);
sintent.setType("text/plain");
sintent.putExtra(Intent.EXTRA_TEXT, "a");
startActivity(Intent.createChooser(sintent, R.string.chooser_title));
}
2 Answers
cbcbcb
16,560 PointsYou need to use the getString( ) method and pass the string constant in as the parameter for the method as shown below:
int itemId = item.getItemId( );
if( itemId == R.id.action_share )
{
// Add code here!
Intent sintent = new Intent( Intent.ACTION_SEND );
sintent.setType( "text/plain" );
sintent.putExtra( Intent.EXTRA_TEXT, "a" );
startActivity(Intent.createChooser( sintent, new String( getString( R.string.chooser_title ).toString( ) ) ) );
}
Chris Grant
Courses Plus Student 1,717 PointsFigured it out, nvm.