Skip to content

Instantly share code, notes, and snippets.

@sakurabird
Last active August 4, 2017 14:16
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sakurabird/6923067 to your computer and use it in GitHub Desktop.
Save sakurabird/6923067 to your computer and use it in GitHub Desktop.
(android) LINEにIntentを送る
Intent intent = new Intent();
intent.setAction(Intent.ACTION_VIEW);
intent.setData(Uri.parse("line://msg/text/" + "LINEに送りたいテキストの内容"));// ブラウザ起動
try {
startActivity(intent);
} catch (Exception e) {
Toast.makeText(getApplicationContext(), "LINEアプリがインストールされていません", Toast.LENGTH_LONG)
.show();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment