I need to send MMS. Into my hero this code looks ugly but works:
Intent sendIntent = new Intent(\"android.intent.action.SEND_MSG\");
sendIntent.putExtra
You could try something like this.Which will launches all the apps which can handle the intent.
intent.setAction(Intent.ACTION_SEND);
//In case of multiple file
intent.setAction(Intent.ACTION_SEND_MULTIPLE);
intent.putParcelableArrayListExtra(Intent.EXTRA_STREAM, );
intent.putExtra(Intent.EXTRA_STREAM, );
intent.setType("*/*");
startActivity(intent);