摘要: 去评分:跳到手机中已安装的市场评分页面Uri uri = Uri.parse("market://details?id="+getPackageName()); Intent intent = new Intent(Intent.ACTION_VIEW,uri); intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK); startActivity(intent);分享:Intent sendIntent = new Intent(); sendIntent.setAction(Intent.ACTION_SEND); ... 阅读全文
posted @ 2014-03-09 21:56 crane13 阅读(277) 评论(0) 推荐(0) 编辑