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)));
You can only share links using an intent. you need Facebook Sdk to share text or images