问题
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?
回答1:
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
来源:https://stackoverflow.com/questions/13135379/imdb-description