分享某个应用
Intent shareIntent = new Intent();
shareIntent.setAction(Intent.ACTION_SEND);
// shareIntent.putExtra("android.intent.extra.SUBJECT", "分享");
shareIntent.setType("text/plain");
// 需要指定意图的数据类型
shareIntent.putExtra(Intent.EXTRA_SUBJECT, "分享");
shareIntent.putExtra(Intent.EXTRA_TEXT,
"推荐你使用一个程序" + item.getAppname());
shareIntent = Intent.createChooser(shareIntent, "分享");
startActivity(shareIntent);