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 . j a v a2 s.c o m*/ import com.loopj.android.http.AsyncHttpResponseHandler; public class HomeTimelineFragment extends TweetsListFragment { @Override protected void getTimeline(String since_id, String max_id, AsyncHttpResponseHandler handler) { client.getHomeTimeline(since_id, max_id, handler); } }