0

i m new in android i try to send the image in twitter , i use this but is not help full http://www.londatiga.net/it/how-to-send-image-to-twitpic-from-android/ and i also use this Android Intent for Twitter application not get success can any budy share with me .. code please help me friends

Community
  • 1
  • 1
user2189505
  • 51
  • 1
  • 10
  • Check this below link this one be Useful For You [Twitter and Facebook Integration][1] [1]: http://stackoverflow.com/questions/8162451/facebook-twitter-integration-in-my-android-application/ – Piyush Mar 25 '13 at 06:08

1 Answers1

2

you can use twitter4j library for android

http://twitter4j.org/en/

its easy to use

StatusUpdate status = new StatusUpdate(message);
    status.setMedia(file); // image location
    twitter.updateStatus(status);
tonyo
  • 678
  • 1
  • 7
  • 22