座標を取得するためのサービスを使用していGPS
ますNetwork
アラームマネージャーを使用して、2分ごとにサービスをアクティブにしています
Intent myIntent=new Intent(Main.this,ServiceNew.class);
PendingIntent pendingIntent=PendingIntent.getService(OkayaMain.this,0,myIntent,0);
AlarmManager alarmManager=(AlarmManager)getSystemService(ALARM_SERVICE);
Calendar cal=Calendar.getInstance();
cal.add(Calendar.MINUTE,0);
alarmManager.setRepeating(AlarmManager.RTC_WAKEUP,cal.getTimeInMillis(),UPDATE_INTERVAL,pendingIntent);
それは2分ごとにアクティブになりますしかし、しばらくするとそれは殺すか、OSはそれを殺すようにします、私はフォアグラウンドサービスを使いたくありません
私の ServiceClass は ServiceNew.class です
public class ServiceNew extends Service
{
private class LocationListener implements android.location.LocationListener{
Location mLastLocation;
public LocationListener(String provider)
{
Log.e(TAG, "LocationListener " + provider);
mLastLocation = new Location(provider);
}
@Override
public void onLocationChanged(Location location)
{
Log.e(TAG, "onLocationChanged: " + location);
mLastLocation.set(location);
dLat=location.getLatitude();
dLng=location.getLongitude();
sCoordinateType=location.getProvider();
}
@Override
public void onProviderDisabled(String provider)
{
Log.e(TAG, "onProviderDisabled: " + provider);
}
@Override
public void onProviderEnabled(String provider)
{
Log.e(TAG, "onProviderEnabled: " + provider);
}
@Override
public void onStatusChanged(String provider, int status, Bundle extras)
{
Log.e(TAG, "onStatusChanged: " + provider);
}
}
LocationListener[] mLocationListeners = new LocationListener[] {
new LocationListener(LocationManager.GPS_PROVIDER),
new LocationListener(LocationManager.NETWORK_PROVIDER)
};
@Override
public IBinder onBind(Intent arg0)
{
return null;
}
@Override
public int onStartCommand(Intent intent, int flags, int startId)
{
Log.e(TAG, "onStartCommand");
super.onStartCommand(intent, flags, startId);
return START_STICKY;
}
@Override
public void onCreate()
{
Log.e(TAG, "onCreate");
initializeLocationManager();
try {
mLocationManager.requestLocationUpdates(
LocationManager.NETWORK_PROVIDER, LOCATION_INTERVAL, LOCATION_DISTANCE,
mLocationListeners[1]);
} catch (java.lang.SecurityException ex) {
Log.i(TAG, "fail to request location update, ignore", ex);
} catch (IllegalArgumentException ex) {
Log.d(TAG, "network provider does not exist, " + ex.getMessage());
}
try {
mLocationManager.requestLocationUpdates(
LocationManager.GPS_PROVIDER, LOCATION_INTERVAL, LOCATION_DISTANCE,
mLocationListeners[0]);
} catch (java.lang.SecurityException ex) {
Log.i(TAG, "fail to request location update, ignore", ex);
} catch (IllegalArgumentException ex) {
Log.d(TAG, "gps provider does not exist " + ex.getMessage());
}
fnPushLocation();
}
private void fnPushLocation(){
try{
context=getApplicationContext();
timer1=new Timer();
checkTime=new TimerTask(){
public void run(){
if(lIteration>=1){
if(timer1!=null){
timer1.cancel();
timer1=null;
}
SaveLocation();
}
lIteration++;
}
};
timer1.schedule(checkTime,0,UPDATE_INTERVAL);
}
catch(Exception ex){
sResponse=ex.toString();
//fnShowMessage(sResponse);
return;
}
}
Androidがアプリケーションを強制終了した後、座標を取得します.RAMをクリアしてアプリケーションを再度アクティブにするために、これを適切な方法で処理するにはどうすればよいですか
アプリケーションを強制終了させたくないのですが、これに対する解決策はありますか
助けてください、事前に感謝します