Question

In my app I have list of movies, that updates dynamically. Is it possible when user click on movie item, to start installed Imdb app and to show movie description?

Was it helpful?

Solution

You can try to use

imdb:///name/<nameID>
imdb:///find?q=<search_query>
imdb:///title/<titleID>

as an URI parameter in your intent. For example

startActivity(android.intent.action.VIEW, imdb:///title/<titleID>);

For more information see http://www.openintents.org/en/uris and http://developer.android.com/reference/android/content/Intent.html

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top