Back to project page Timed-Vibration.
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.
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(); }