I'm working on an android app. It's about text convert. I added share button. It's working except facebook. When I click to share button and select facebook, the converted text doesn't seem in facebook share section. Here it's the share button code:
btn_share.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
Intent share = new Intent(Intent.ACTION_SEND);
share.setType("text/plain");
share.putExtra(Intent.EXTRA_TEXT, text_converted);
share.putExtra(Intent.EXTRA_TITLE, "Cool Text Share");
startActivity(Intent.createChooser(share, "Cool Text Share"));