Back to project page MyTwitter-Android.
The source code is released under:
Apache License
If you think the Android project MyTwitter-Android 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 org.fukata.android.mytw; // w w w .j a v a 2s . com import java.util.List; import org.fukata.android.mytw.database.schema.TweetSchema.TweetType; import android.content.Context; import android.util.Log; public class MentionTimelineView extends TimelineView { public MentionTimelineView(Context context, TimelineActivity activity) { super(context, activity); } @Override List<TimelineItem> getMoreTimeline(String lastStatuseId) { Log.d(getClass().getSimpleName(), "getMoreTimeline"); return parentActivity.twitter.getMoreMentions(lastStatuseId); } @Override List<TimelineItem> getNewTimeline(String latestStatuseId) { Log.d(getClass().getSimpleName(), "getNewTimeline"); return parentActivity.twitter.getNewMentions(latestStatuseId); } @Override List<TimelineItem> getTimeline() { Log.d(getClass().getSimpleName(), "getTimeline"); return parentActivity.twitter.getMentions(); } @Override TweetType getTweetType() { return TweetType.MENTION; } }