Skip to content

Instantly share code, notes, and snippets.

View toidv's full-sized avatar

Steve Duong toidv

View GitHub Profile
@sakurabird
sakurabird / gist:6923067
Last active August 4, 2017 14:16
(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();
}