Back to project page twitt4droid.
The source code is released under:
Apache License
If you think the Android project twitt4droid listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
/* * Copyright 2014 Daniel Pedraza-Arcega/*w ww . j a v a2 s. c om*/ * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.twitt4droid.fragment; import android.os.Bundle; import com.twitt4droid.R; import com.twitt4droid.data.dao.TimelineDAO; import com.twitt4droid.data.dao.impl.DAOFactory; import twitter4j.TwitterException; import java.util.List; /** * Shows the 20 most recent mentions (tweets containing a users's \@screen_name) for the * authenticating user. * * @author Daniel Pedraza-Arcega * @since version 1.0 */ public class MentionsTimelineFragment extends TimelineFragment { /** * Creates a MentionsTimelineFragment. * * @param enableDarkTheme if the dark theme is enabled. * @return a new MentionsTimelineFragment. */ public static MentionsTimelineFragment newInstance(boolean enableDarkTheme) { MentionsTimelineFragment fragment = new MentionsTimelineFragment(); Bundle args = new Bundle(); args.putBoolean(ENABLE_DARK_THEME_ARG, enableDarkTheme); fragment.setArguments(args); return fragment; } /** * Creates a MentionsTimelineFragment. * * @return a new MentionsTimelineFragment. */ public static MentionsTimelineFragment newInstance() { return newInstance(false); } /** {@inheritDoc} */ @Override protected MentionsStatusesLoaderTask initStatusesLoaderTask() { return new MentionsStatusesLoaderTask(new DAOFactory(getActivity().getApplicationContext()).getMentionsTimelineDAO()); } /** {@inheritDoc} */ @Override public void onActivityCreated(Bundle savedInstanceState) { super.onActivityCreated(savedInstanceState); initStatusesLoaderTask().execute(); } /** {@inheritDoc} */ @Override public int getResourceTitle() { return R.string.twitt4droid_mentions_timeline_fragment_title; } /** {@inheritDoc} */ @Override public int getResourceHoloLightIcon() { return R.drawable.twitt4droid_ic_notifications_holo_light; } /** {@inheritDoc} */ @Override public int getResourceHoloDarkIcon() { return R.drawable.twitt4droid_ic_notifications_holo_dark; } /** * Loads twitter statuses asynchronously. * * @author Daniel Pedraza-Arcega * @since version 1.0 */ private class MentionsStatusesLoaderTask extends StatusesLoaderTask { /** * Creates a MentionsStatusesLoaderTask. * * @param timelineDao a TimelineDAO. */ protected MentionsStatusesLoaderTask(TimelineDAO timelineDao) { super(timelineDao); } /** {@inheritDoc} */ @Override protected List<twitter4j.Status> loadTweetsInBackground() throws TwitterException { TimelineDAO timelineDAO = (TimelineDAO) getDAO(); List<twitter4j.Status> statuses = null; if (isConnectedToInternet()) { statuses = getTwitter().getMentionsTimeline(); // TODO: update statuses instead of deleting all previous statuses and save new ones. timelineDAO.deleteAll(); timelineDAO.save(statuses); } else statuses = timelineDAO.fetchList(); return statuses; } } }