1
5

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

AndroidアプリからTwitterの公式クライアントのツイート画面をIntentで起動する

Posted at

Twitterクライアントを作っていると全ての機能を作り込むのが大変で、公式のクライアントに処理を任せたい時があります。

公式のツイート画面を開きたい時は以下のURIをIntentに渡せば大丈夫です。

Uri uri = Uri.parse("https://twitter.com/intent/tweet");
Intent intent = new Intent(Intent.ACTION_VIEW, uri);
startActivity(intent);

正式には Tweet Web Intent という機能を実現するためのURIのようですが、Intentという名前だけあって公式クライアントも対応しているようです。

1
5
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
5

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?