본문 바로가기

Android

Intent를 이용한 카카오스토리 공유하기

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));


            // 카카오스토리 어플이 없다는 팝업

        }

    }