StringBuilder smsInfoSb = new StringBuilder();

smsInfoSb.append("smsto:");

smsInfoSb.append("01011112222");

smsInfoSb.append(';');  // 삼성 겔럭시 시리즈는 , 로 구분자를 주어야함.

smsInfoSb.append("01022223333");

startActivityForResult(new Intent(Intent.ACTION_SENDTO,Uri.parse(smsInfoSb.toString())),CALL_RESULT_CD);


이런식으로해서 보내는데요


빨간 부분에서 삼성 제품 중에 겔럭시s 가  구분자가 [ , ] 가 아니더라고요 

빨간 부분 참고 사이트    http://developer.samsung.com/forum/board/thread/view.do?boardName=GeneralBKor&messageId=134640&startPage=8&curPage=11


혹시 겔럭시 s 단체 문자 보낼때 구분자가 먼지좀알려주세요.