I have a share button to share a text with other apps:

//Share Button 
shareBtn.setOnClickListener(new View.OnClickListener() {
    public void onClick(View v) {

        Intent sharingIntent = new Intent(android.content.Intent.ACTION_SEND);
        sharingIntent.setType("text/plain");
        String shareBody = quoteTxt.getText().toString();
        sharingIntent.putExtra(android.content.Intent.EXTRA_SUBJECT, "Awesome Quote!");
        sharingIntent.putExtra(android.content.Intent.EXTRA_TEXT, shareBody);
        startActivity(Intent.createChooser(sharingIntent, "Share via"));        
    }
    });

Everything is working fine except facebook, when I choose to share with facebook, the facebook share dialog opens but the textbox is empty.

EDIT: Sorry, Duplicate ( Share Text on Facebook from Android App via ACTION_SEND )

link|improve this question

feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.