Back to project page callmeter.
The source code is released under:
GNU General Public License
If you think the Android project callmeter 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 de.ub0r.android.callmeter.ui; // www . j a va 2s . c o m import com.actionbarsherlock.app.SherlockActivity; import de.ub0r.android.callmeter.TrackingUtils; /** * @author flx */ public class TrackingSherlockActivity extends SherlockActivity { @Override public void onStart() { super.onStart(); TrackingUtils.startTracking(this); } @Override public void onStop() { super.onStop(); TrackingUtils.stopTracking(this); } }