Android passing multiple numbers to SMS intent
问题 I am getting different numbers from Contacts and passing them to SMS application. I am using the following: Intent intent = new Intent( Intent.ACTION_VIEW, Uri.parse( "sms:"+numbers) ); //numbers separated with ; intent.putExtra( "sms_body", body ); startActivity( intent ); The problem is if I separate numbers with ' ; ', it does not work on Galaxy S but works on others like HTC, Samsung Gio etc... On Galaxy S, it works if I separate numbers with comma ' , '. So how to resolve this issue? 回答1