Intent intent = new Intent(Intent.ACTION_SEND);
intent.putExtra(Intent.EXTRA_TEXT,getResources().getString(R.string.share_message));
intent.setType("text/plain");
startActivity(Intent.createChooser(intent,getResources().getString(R.string.share_lable)));
666

被折叠的 条评论
为什么被折叠?



