跳转应用市场中自己应用的页面进行评分

很多应用都有评分的功能,就是点击后跳转到应用市场中自己的app页面,进行打分,以下代码可以完成该功能,不过使用的时候,需要添加异常捕获,防止有些手机上没有安装应用市场类app而导致异常抛出。


try{
    String str = "market://details?id=" + getPackageName();
    Intent localIntent = new Intent(Intent.ACTION_VIEW);
    localIntent.setData(Uri.parse(str));
    startActivity(localIntent);
}catch (Exception e){
    //手机没有安装应用 市场类应用的提示
    CommonUtils.showToast(SettingActivity.this, getString(R.string.no_market_tips));
}

你可能感兴趣的:(android经验分享,android,studio)