I try “share” from my app to Wasthapp and Facebook. But the problem is that both of them can’t recognize intent.setType("* /"); so it is only possible send or text or image. it's not possible send both files because they don’t recognize intent.setType("/*"). Is there any way to send both type of files without intent.setType("* /*")?
Code Facebook
try{
Intent intent = new Intent(Intent.ACTION_SEND);
intent.putExtra(Intent.EXTRA_STREAM, Uri.parse("file://"+uri));
intent.setType("*/*");
final PackageManager pm = context.getPackageManager();
final List activityList = pm.queryIntentActivities(intent, 0);
int len = activityList.size();
for (int i = 0; i < len; i++) {
final ResolveInfo app = (ResolveInfo) activityList.get(i);
if ((app.activityInfo.name).contains("facebook/whatsapp")) {
final ActivityInfo activity=app.activityInfo;
final ComponentName name=new ComponentName(activity.applicationInfo.packageName, activity.name);
intent=new Intent(Intent.ACTION_SEND);
intent.addCategory(Intent.CATEGORY_LAUNCHER);
intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_ACTIVITY_RESET_TASK_IF_NEEDED);
intent.setComponent(name);
intent.putExtra(Intent.EXTRA_STREAM, Uri.parse("file://"+uri));
intent.putExtra(Intent.EXTRA_TEXT, "http://www.google.fr/");
intent.setType("*/*");
context.startActivity(intent);
break;
}
}
}
catch(final ActivityNotFoundException e) {
Log.i("mufumbo", "no twitter native",e );
}
