I used the following code snippet for messaging with Action_Send in other applications.
Intent sharingIntent = new Intent(Intent.ACTION_SEND); sharingIntent.setType("text/plain"); sharingIntent.putExtra("android.intent.extra.SUBJECT", ""); sharingIntent.putExtra("android.intent.extra.TEXT", "ABC"); startActivity(Intent.createChooser(sharingIntent, "Share using"));
And it works fine on my device (Android 2.2). Conceptually, I donโt know what distinguishes your code above. But the above code is great for me.
source share