I want to send data from my android app to Office Mobile (particularly Word Document) android app. What value should I supply at the setType()
method below, the current value does not bring Office Mobile among options. It just brings twitter, facebook, etc.
Intent sendIntent = new Intent();
sendIntent.setAction(Intent.ACTION_SEND);
sendIntent.putExtra(Intent.EXTRA_TEXT, "This is my text to send.");
sendIntent.setType("text/plain");
startActivity(sendIntent);