忍者ブログ
  • 2024.10
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 2024.12
[PR]
×

[PR]上記の広告は3ヶ月以上新規記事投稿のないブログに表示されています。新しい記事を書く事で広告が消えます。

【2024/11/23 06:40 】 |
Androidでtwitterにテキストと画像を投稿(Intent)
twitterに投稿したい。
手軽なので、Intentを使いたい。


◯テキストだけの場合
めちゃ簡単。


String encodedText;
try {
encodedText = URLEncoder.encode(text, "UTF-8");
} catch ( java.io.UnsupportedEncodingException ignore ) {
encodedText = text;
}

String encodedUrl = "http://twitter.com/share?text=" + encodedText;
Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse(encodedUrl));
getContext().startActivity(intent);




◯画像も投稿する場合

twitterにテキストと画像を投稿する参考
PR
【2015/01/29 14:42 】 | Android | 有り難いご意見(0)
<<AndroidのIntent | ホーム | ファイルやディレクトリが作成できない>>
有り難いご意見
貴重なご意見の投稿














<<前ページ | ホーム | 次ページ>>