public static void shareKakaoStory(Context context,String title,String content){
Intent intent = new Intent();
intent.setAction(Intent.ACTION_SEND);
intent.setType("text/plain");
intent.setPackage("com.kakao.story");
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_kakaostory));
// 카카오스토리 어플이 없다는 팝업
}
}
'Android' 카테고리의 다른 글
dp를 px로 변환하기 (0) | 2016.07.12 |
---|---|
Intent를 이용한 트위터 공유하기 (0) | 2016.07.12 |
Intent를 이용한 페이스북 공유하기 (0) | 2016.07.12 |
Intent를 이용한 카카오톡 공뷰하기 (0) | 2016.07.12 |
ValueAnimator 를 이용한 색상 변경 애니메이션 (0) | 2016.07.12 |