0

How to Share Data(txt or image ....) in android for all applications

for example

Share Data(txt or image ....) in android for all applications

the code not do on facebook

Intent sendIntent = new Intent(android.content.Intent.ACTION_SEND); sendIntent.putExtra(Intent.EXTRA_TEXT, "This is my text to send."); sendIntent.setType("text/plain"); startActivity(Intent.createChooser(sendIntent, getResources().getText(R.string.send_to)));

ant
  • 397
  • 1
  • 5
  • 19
Majd
  • 46
  • 7
  • Possible duplicate of [Share Text on Facebook from Android App via ACTION\_SEND](http://stackoverflow.com/questions/3515198/share-text-on-facebook-from-android-app-via-action-send) – ant Nov 28 '15 at 00:37

1 Answers1

0

You can only share links using an intent. you need Facebook Sdk to share text or images

user5534193
  • 145
  • 2