有不少时候咱们须要分享应用中的信息到Facebook,Twitter,短信等。。it
1建立一个Intent分享
Intent sharingIntent = new Intent(Intent.ACTION_SEND);vi
2 分享内容的格式ant
sharingIntent.setType("text/plain");new
3添加内容(短信或是Twitter有字数限制)tar
sharingIntent.putExtra(Intent.EXTRA_TEXT,"Here the body");
startActivity(Intent.createChooser(sharingIntent,"How do you want to share?"));