Android(Java)

Intent로 메일 보내기, 웹링크 열기

E.I.T.U 2021. 11. 12. 14:25

Intent로 받는 이메일 주소 넘겨서 메일 보내기

Intent intent = new Intent(Intent.ACTION_SEND);
intent.setType("plain/text");
intent.putExtra(Intent.EXTRA_EMAIL, new String[]{"example@example.com"});
startActivity(Intent.createChooser(intent, "Send mail..."));

Intent로 웹링크 열기

Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setData(Uri.parse("http://www.instagram.com/seojin_e_"));
startActivity(intent);