Where can I get the code of a Twitter client for Android? Possibly a recent one using the latest SDK. Thanks
6 Answers 6
Google was supposed to open source the official twitter app... http://android-developers.blogspot.com/2010/05/twitter-for-android-closer-look-at.html
we’ll soon be open sourcing this application code under the Android Open Source Project.
but it never happened :(
Comments
I only found this, twitli. http://www.twitli.com/download.html
Comments
I have coded a "very" simple Twitter client which implements Sign-in with twitter functionality.
maybe it doesn't give you exactly what you want/expect, but it might give you an idea.
http://thetechnib.blogspot.com/2011/01/android-sign-in-with-twitter.html
Comments
You can start here: Source Forge - Twitter for Android
1 Comment
I've found TwAPIme, which is open source. The source code is available here, and targets Android version 1.5 and above.
AndTweet is another open twitter application, but this require Android 1.6 and above.
Twimight is another, but details on the webpage are scarce.
Sorry I haven't found any open source twitter applications specifically targeting Android 4.0 and above.
Comments
By Using code we can directly get the twitter log in page
Intent i = new Intent();
i.setAction(Intent.ACTION_VIEW);
i.setData(Uri.parse("http://mobile.twitter.com"));
startActivity(i);