while i have successfully shared strings to other apps like email.. there's a problem with facebook...
here's my code:
private void sharePost() {
Intent shareIntent = new Intent(Intent.ACTION_SEND);
shareIntent.putExtra(Intent.EXTRA_TEXT, dataSecContent);
shareIntent.setType("text/plain");
startActivity(Intent.createChooser(shareIntent,
getString(R.string.share_chooser_title)));
}
this is what i only get... no strings or whatsoever...
what am i doing wrong? i've tried sending URLs with uri and it successfully shared.. but not strings..