Twitter、Facebook、Google+等に共有する場合、独自に実装しているアプリを多くみかけますが、暗黙的Intentを使うと簡単です。
Google PlayやYouTubeなどの公式アプリもこの暗黙的Intentを使用して共有機能を実装しているようです。
try {
Intent intent = new Intent();
intent.setAction(Intent.ACTION_SEND);
intent.setType("text/plain");
intent.putExtra(Intent.EXTRA_TEXT, "共有する文言");
startActivity(Intent.createChooser(intent, "共有する"));
} catch (Exception e) {
}
たったこれだけです。