본문 바로가기

Android

Intent를 이용한 카카오톡 공뷰하기



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

            // 카톡어플이 없다는 팝업

        }

  }


간단한 소스이다.

카카오톡 패키지명을 통해 공유하는 함수이다.