Back to project page AndroidTwitterApp.
The source code is released under:
MIT License
If you think the Android project AndroidTwitterApp listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package net.julienlecomte.apps.basictwitter.fragments; /* w w w . ja v a 2s.com*/ import com.loopj.android.http.AsyncHttpResponseHandler; public class MentionsTimelineFragment extends TweetsListFragment { @Override protected void getTimeline(String since_id, String max_id, AsyncHttpResponseHandler handler) { client.getMentionsTimeline(since_id, max_id, handler); } }