Android/アプリメッセージ送信
提供: 初心者エンジニアの簡易メモ
facebookやtwitterやemailにメッセージを送信する
googleのurlをtwitterやemailに送るサンプル
Intent intent = new Intent(); intent.setAction(Intent.ACTION_SEND); intent.setType("text/plain"); intent.putExtra(Intent.EXTRA_TEXT, "http://www.google.com"); startActivity(intent);