首页 > 系统 > Android > 正文

Android App 评价/跳转到应用市场

2019-11-09 17:40:00
字体:
来源:转载
供稿:网友

Uri uri = Uri.parse("market://details?id=" + context.getPackageName());Intent goToMarket = new Intent(Intent.ACTION_VIEW, uri);try {    startActivity(goToMarket);} catch (ActivityNotFoundException e) {    Toast.makeText(context, "Couldn't launch the market !", Toast.LENGTH_SHORT).show();}

转载http://stormzhang.com/android/2013/06/27/android-apPRaise-for-your-app/


发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表