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
Carla Brooks
803 PointsNo Activity found to handle Intent
Im trying to retrieve PDF files using an intent, using this as code:
Intent intent = new Intent(Intent.ACTION_GET_CONTENT); intent.setType("application/pdf"); startActivityForResult(intent,PICKFILE_RESULT_CODE);
The problem is that it shows me this error no activity found to handle intent action_get_content, i have doing some reasearch and I found that is because my celphone doesnt have a PDF file reader, but how can I fix this issue, eventhough i've downloaded a PDF file reader, it continues to show me that same error