Android Open Source - Timed-Vibration Tab






From Project

Back to project page Timed-Vibration.

License

The source code is released under:

GNU General Public License

If you think the Android project Timed-Vibration listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

Java Source Code

package se.hockersten.timed.vibration.main;
/*  ww  w.j  av a 2s.  co m*/
public interface Tab {
    /**
     * Called when this Tab becomes the selected tab.
     * This is *not* called when for example the application loses focus.
     */
    public void onTabVisible();
    /**
     * Called when this Tab stops being the selected tab.
     * This is *not* called when for example the application loses focus.
     */
    public void onTabInvisible();
}




Java Source Code List

se.hockersten.timed.vibration.main.CompetitionTab.java
se.hockersten.timed.vibration.main.MainActivity.java
se.hockersten.timed.vibration.main.MainFragment.java
se.hockersten.timed.vibration.main.PracticeTab.java
se.hockersten.timed.vibration.main.Tab.java
se.hockersten.timed.vibration.main.Vibrate.java
se.hockersten.timed.vibration.preferences.PreferencesActivity.java