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
本文详细解释了如何在Android应用内部使用market://details链接直接跳转到应用详情页面,相比使用market://search链接,这种方式能更直接地引导用户进入目标应用的详细信息页面,提高用户体验。
2万+

被折叠的 条评论
为什么被折叠?



