android分享功能,android分享,Intent inten
分享于 点击 16571 次 点评:116
android分享功能,android分享,Intent inten
Intent intent=new Intent(Intent.ACTION_SEND); intent.setType("text/plain");intent.putExtra(Intent.EXTRA_TEXT, "I would like to share this with you...");startActivity(Intent.createChooser(intent, getTitle()));//该片段来自于http://byrx.net
用户点评