Imdb description [closed]

纵然是瞬间 提交于 2020-01-17 04:29:05

问题


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

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!