Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I need help to post text and images in drawable to twitter. Below is my code. I've tried and always failed. Can someone please help me.

private void ShareTwitter(){
        if (campaign == null) {
            finish();
        }else {
        String message =rewardItemTextView.getText().toString()+" "+"#TEST";
        try {
          Intent sharingIntent = new Intent(Intent.ACTION_SEND);

          Uri uri = Uri.parse("content://com.tes.activities/bbq.png");
//            Uri uri = Uri.parse("file:///android_assets/bbq");
          sharingIntent.setType("image/*");
          sharingIntent.setClassName("com.twitter.android","com.twitter.android.PostActivity");
          sharingIntent.putExtra(Intent.EXTRA_TEXT, message );
          sharingIntent.putExtra(Intent.EXTRA_STREAM, uri);
          startActivity(sharingIntent);
        } catch (Exception e) {
            Intent i = new Intent();
            i.putExtra(Intent.EXTRA_TEXT, message);
            i.setAction(Intent.ACTION_VIEW);
            i.setData(Uri.parse("https://mobile.twitter.com/compose/tweet"));
            startActivity(i);        
        }
share|improve this question

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

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.