Intent msg = new Intent(Intent.ACTION_SEND);
msg.addCategory(Intent.CATEGORY_DEFAULT);
msg.putExtra(Intent.EXTRA_SUBJECT, "주제");
msg.putExtra(Intent.EXTRA_TEXT, "내용");
msg.putExtra(Intent.EXTRA_TITLE, "제목");
msg.setType("text/plain");
startActivity(Intent.createChooser(msg, "공유"));
출처 : http://jhrun.tistory.com/131
'Android' 카테고리의 다른 글
Android 데이터베이스 사용법 (2) | 2016.03.29 |
---|---|
ScrollView 안에 ListView 또는 GridView 사용 시 (0) | 2015.11.03 |
Android Text ClipBoard에 복사하기 (0) | 2015.10.15 |
커스텀 토스트 메시지 사용법 (0) | 2015.10.08 |
확장 리스트뷰(ExpanableListView) (0) | 2015.09.14 |