Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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 );
                }
share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.