0

Is there a way to share a tweet from my Android app automatically (after user's login, and permissions - like the Facebook SDK)?

I searched the internet, but only found 3-4 old not updated 3rd party libs, and no docs for any.

Thanks!

Nagy Vilmos
  • 1,878
  • 22
  • 46

1 Answers1

0

With this you can share information with other applications, for example twitter.

Intent intent = new Intent(Intent.ACTION_SEND);
                intent.setType("text/plain");
                intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
                intent.putExtra(Intent.EXTRA_TEXT, text_to_share);

Hope it helps you :)