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 trialMUZ140819 Rumbidzai Mwatambudzeni
5,092 PointssetDataAndType() isn't always required. Skip that line here and now just start the Activity for intent.
PLEASE HELP
// This code is excerpted from an Activity
Uri videoUri = new Uri("http://files.parse.com/01234-abcd-video.mp4");
Intent intent=new Intent(Intent.ACTION_VIEW, videoUri);
intent.setDataAndType(intentUri, "video/*");
startActivity(intent);
1 Answer
Steve Hunter
57,712 PointsHi there,
You need to omit the second line - the challenge says setDataAndType() isn't always required. Skip that line here and now just start the Activity for intent
so you just need to go straight to startActivity(intent);
The final code looks like:
Uri videoUri = new Uri("http://files.parse.com/01234-abcd-video.mp4");
Intent intent = new Intent(Intent.ACTION_VIEW, videoUri);
startActivity(intent);
Steve.