public static void shareKakaotalk(Context context,String title,String content){
Intent intent = new Intent();
intent.setAction(Intent.ACTION_SEND);
intent.setType("text/plain");
intent.setPackage("com.kakao.talk");
intent.putExtra(Intent.EXTRA_SUBJECT, title);
intent.putExtra(Intent.EXTRA_TEXT, content);
try {
context.startActivity(intent);
} catch (Exception e) {
ToastHelper.showText(context,context.getResources().getString(R.string.not_exist_kakaotalk));
// 카톡어플이 없다는 팝업
}
}
간단한 소스이다.
카카오톡 패키지명을 통해 공유하는 함수이다.
'Android' 카테고리의 다른 글
Intent를 이용한 카카오스토리 공유하기 (0) | 2016.07.12 |
---|---|
Intent를 이용한 페이스북 공유하기 (0) | 2016.07.12 |
ValueAnimator 를 이용한 색상 변경 애니메이션 (0) | 2016.07.12 |
WebView <input type="file"> 처리방법 (0) | 2016.07.12 |
Webview의 loadData와 loaddatawithbaseurl 의 차이점 (0) | 2016.07.12 |