打开App所在Google商店的下载(评论)页面

作者:追风剑情 发布于:2017-8-17 20:08 分类:Android

  1. //打开App所在Google商店的下载页面(评论url)
  2. public void openCommentUrl()
  3. {
  4. Uri uri = Uri.parse("market://details?id=" + this.getPackageName());
  5. Intent goToMarket = new Intent(Intent.ACTION_VIEW, uri);
  6. goToMarket.addFlags(Intent.FLAG_ACTIVITY_NO_HISTORY |
  7. Intent.FLAG_ACTIVITY_NEW_DOCUMENT |
  8. Intent.FLAG_ACTIVITY_MULTIPLE_TASK);
  9. try {
  10. this.startActivity(goToMarket);
  11. } catch (ActivityNotFoundException e) {
  12. this.startActivity(new Intent(Intent.ACTION_VIEW,
  13. Uri.parse("http://play.google.com/store/apps/details?id=" + this.getPackageName())));
  14. }
  15. }

标签: Android

Powered by emlog  蜀ICP备18021003号-1   sitemap

川公网安备 51019002001593号