您的位置:首页 > 移动开发

Adroid:如何在app中访问到在market当中的其它apps

2012-03-01 15:28 309 查看
Even better to use "market://details" instead of "market://search":
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setData(Uri.parse("market://details?id=com.android.example"));
startActivity(intent);


Then it opens directly the details page of the app. With search it shows a single search result and the user has to do an additional click to get to the detail page.

参考资料:

http://stackoverflow.com/questions/3442366/android-link-to-market-from-inside-another-app
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: