-1

Can't attached image in Facebook and other social service and also set XML file

android:name="android.permission.WRITE_EXTERNAL_STORAGE"
     android:name="android.permission.READ_EXTERNAL_STORAGE"

java file

 Uri imageUri = Uri.parse("/sdcard/fildername" + images29.png);
          Intent intent = new Intent(Intent.ACTION_SEND);
          intent.setType("image/png"); 

      intent.putExtra(Intent.EXTRA_STREAM, imageUri); 
      startActivity(Intent.createChooser(intent , "Share"));
Paras Nakum
  • 238
  • 2
  • 8

1 Answers1

2

You have to write like below.

Uri imageUri = Uri.fromFile("/sdcard/fildername" + images29.png);
          Intent intent = new Intent(Intent.ACTION_SEND);
          intent.setType("image/png"); 

      intent.putExtra(Intent.EXTRA_STREAM, imageUri); 
      startActivity(Intent.createChooser(intent , "Share"));
Mehul Kabaria
  • 6,404
  • 4
  • 25
  • 50