12
12

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 Intent逆引き辞書

Last updated at Posted at 2014-12-18

よく使うやつをまとめました。

指定したURLをタイトル付きでシェアする

Intent intent = new Intent(Intent.ACTION_SEND);
intent.setType("text/plain");
intent.putExtra(Intent.EXTRA_TITLE, title);
intent.putExtra(Intent.EXTRA_TEXT, url);
startActivity(Intent.createChooser(intent, chooserTitle);

指定したURLを外部ブラウザで開く

Uri uri = Uri.parse(mUrl);
Intent i = new Intent(Intent.ACTION_VIEW,uri);
startActivity(i);

指定したアプリのGoogle Playを開く

Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse("market://details?id=<アプリのパッケージ名>"));
startActivity(intent);

電話をかける

Intent intent = new Intent(
    Intent.ACTION_CALL,
    Uri.parse("tel:" + phoneNumber));
    startActivity(intent);
12
12
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
12
12

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?