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