标签:android style blog http io ar color sp on
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.setAction(Intent.ACTION_SEND); iIntent.setType("text/*"); intent.putExtra(Intent.EXTRA_TEXT, "内容");
标签:android style blog http io ar color sp on
原文地址:http://www.cnblogs.com/yydcdut/p/4148707.html