Back to project page openpomo.
The source code is released under:
GNU General Public License
If you think the Android project openpomo listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
/** * This file is part of Pomodroid./* ww w. ja v a2s .c om*/ * * Pomodroid is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * Pomodroid is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with Pomodroid. If not, see <http://www.gnu.org/licenses/>. */ package it.unibz.pomodroid; import android.os.Bundle; import it.unibz.pomodroid.exceptions.PomodroidException; /** * Main activity. It just loads the layout. * * @author Daniel Graziotin <d AT danielgraziotin DOT it> * @author Thomas Schievenin <thomas.schievenin@stud-inf.unibz.it> * @see it.unibz.pomodroid.SharedActivity */ public class Pomodroid extends SharedActivity { @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); super.getUser().setSelectedActivity(null); super.getUser().setUnderPomodoro(false); try { super.getUser().save(getDbHelper()); } catch (PomodroidException e) { e.alertUser(getContext()); } } @Override public void onResume() { super.onResume(); //TODO: notification for pomodroid donation if (!super.getUser().isAdvanced()) startActivity(TodoTodaySheet.class); else startActivity(TabPomodroid.class); } }