Back to project page Test-SimpleTwitterClient.
The source code is released under:
This is free and unencumbered software released into the public domain. Anyone is free to copy, modify, publish, use, compile, sell, or distribute this software, either in source code form or as a co...
If you think the Android project Test-SimpleTwitterClient 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 com.example.Twitter_Android.Loaders; //from w ww.j a v a 2s . com import android.content.Context; import com.example.Twitter_Android.Logic.Tweet; import com.example.Twitter_Android.Net.Connector; import org.json.simple.parser.ParseException; import java.util.ArrayList; import java.util.List; public class UserTimelineLoader extends TweetLoader<Tweet> { private final long maxID; private final long sinceID; private final long userID; //------------------------------------------------------------------------------------------------------------------ public UserTimelineLoader(Context context, long userID, long maxID, long sinceID) { super(context); /* Check. One of this parameters always must be 0. If not - loading newest tweets */ if (maxID != 0 && sinceID != 0) { sinceID = 0; } this.maxID = maxID; this.sinceID = sinceID; this.userID = userID; } //------------------------------------------------------------------------------------------------------------------ @Override public List<Tweet> loadInBackground() { final Connector connector = new Connector(); List<Tweet> loadedTweets = new ArrayList<>(); try { loadedTweets = connector.getStatuses_UserTimeline(userID, maxID, sinceID, RESULT_COUNT); } catch (ParseException e) { e.printStackTrace(); } setLoadedTweets(loadedTweets); return loadedTweets; } //------------------------------------------------------------------------------------------------------------------ }