Intent intent = new Intent(Intent.ACTION_SEND);
intent.setType("text/plain");
intent.putExtra(Intent.EXTRA_TEXT, "전달할 메시지");
startActivity(Intent.createChooser(intent, "공유하기"));
'Before 2022 > Android' 카테고리의 다른 글
AlertDialog 스타일을 호출한 내부 파일에서 변경하기 (0) | 2019.07.11 |
---|---|
안드로이드 주소록에서 전화번호 가져오기 (0) | 2019.07.11 |
Floating Action Button 활용하기 (0) | 2019.07.11 |
NetworkCallback을 이용하여 네트워크 상태를 받아오자. (0) | 2019.07.11 |
도넛형 View 만들기 (0) | 2019.07.11 |