Intent intent = new Intent(Intent.ACTION_SEND);

    intent.putExtra("sms_body"., "data");
    intent.setType("text/plain");
    startActivity(intent);

 

이런식으로 하면

문자메시지의 intent key 값인 "sms_body" 때문에

문자메시지에는 데이터를 넘기기 쉬운데 카카오톡이나 네이트온톡은 잘 모르겠더군요

 

카카오톡으로 직접 보내는건 할수 있으나 저는

Intent intent = new Intent(Intent.ACTION_SEND);

에목록에 있는 카카오톡 네이트온톡 g메일 e매일 등등 ,,,,

다방면으로 편리하게 넘기려 하는데 key 값이 문제네요

도와 주십쇼~ㅠㅠ