I have following code which i am using for opening send SMS window:
Intent sendIntent = new Intent(Intent.ACTION_VIEW);
sendIntent.putExtra("sms_body", msgString);
sendIntent.setType("vnd.android-dir/mms-sms");
activity.startActivity( sendIntent );
Above code avoids "Complete action using" dialog that Android displays when there are two many apps are registered for sending SMS.
This code works on some device bug not on all, so is there any generic solution which will work on all the devices, to open a Send SMS screen without displaying "Complete action using" dialog.