Back to project page android-gps-test-tool.
The source code is released under:
Apache License ? 2.0 TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 1. Definitions. "License" shall mean the terms and conditions for use, reproduction, and distribution as defined by...
If you think the Android project android-gps-test-tool 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 com.agup.gps; // w ww .j a v a 2s .c o m import com.agup.gps.controllers.SatelliteDataActivityController; import android.app.Activity; import android.os.Bundle; public class SatelliteDataActivity extends Activity { private SatelliteDataActivityController _activityController = null; @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.satdata); _activityController = new SatelliteDataActivityController(this); } @Override protected void onDestroy() { super.onDestroy(); } @Override protected void onPause() { _activityController.stopLocation(); super.onPause(); } @Override protected void onStop(){ _activityController.stopLocation(); super.onStop(); } @Override protected void onResume() { super.onResume(); if(_activityController != null){ _activityController.startLocation(); } } }