android - 当应用程序切换到后台时,我的 android 位置服务被杀死

标签 android android-location

如果我的问题重复或简单,请向我道歉。长期在这个问题上挣扎。

即使我的应用程序切换到后台,我也需要跟踪用户的位置。在网上冲浪时,我发现位置处理器代码可以写成一个服务,这样服务就不会被杀死,我们可以获得用户的位置(两种状态——应用程序在前台和应用程序在后台运行时)。

当我的应用程序处于前台时,我能够持续跟踪用户的位置。但是,当我将应用程序切换到后台时,我感觉我的位置服务停止了并且我无法跟踪用户的位置。请在下面找到我的代码:

AndroidManifest.xml:

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.example.testmylocation"
    android:versionCode="1"
    android:versionName="1.0" >

    <uses-sdk
        android:minSdkVersion="8"
        android:targetSdkVersion="15" />
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
    <application
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name"
        android:theme="@style/AppTheme" >
        <activity
            android:name=".MainActivity"
            android:label="@string/title_activity_main" >
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>

        <service android:name=".MyService"/>
    </application>
</manifest>

MainActivity.java:

package com.example.testmylocation;

import android.os.Bundle;
import android.app.Activity;
import android.content.Intent;
import android.view.Menu;
import android.view.Window;

public class MainActivity extends Activity {

    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        requestWindowFeature(Window.FEATURE_NO_TITLE);
        setContentView(R.layout.activity_main);

        startService(new Intent(this, MyService.class)); 
    }

    @Override
    public boolean onCreateOptionsMenu(Menu menu) {
        getMenuInflater().inflate(R.menu.activity_main, menu);
        return true;
    }
}

MyService.java:

package com.example.testmylocation;

import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.io.PrintStream;
import java.net.URL;
import java.net.URLConnection;
import java.text.SimpleDateFormat;
import java.util.Date;

import org.json.JSONArray;
import org.json.JSONObject;

import android.app.Service;
import android.content.Context;
import android.content.Intent;
import android.location.Location;
import android.location.LocationManager;
import android.os.Bundle;
import android.os.Handler;
import android.os.IBinder;
import android.os.Message;
import android.util.Log;

public class MyService extends Service
{
    private static final String TAG = "TestMyLocation";
    private LocationManager mLocationManager = null;
    private static final int LOCATION_INTERVAL = 0;
    private static final float LOCATION_DISTANCE = 0;
    long itsBatchId = 0;

    private class LocationListener implements android.location.LocationListener
    {
        Location mLastLocation;
        public LocationListener(String provider)
        {
            mLastLocation = new Location(provider);
        }

        @Override
        public void onLocationChanged(Location location)
        {        
            Thread aThread = new Thread(new Runnable() {
                @Override
                public void run() {
                    sendLocationValues(location);
                }
            });
            aThread.start();
        }

        @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);
        }
    } 

    private void sendLocationValues(Location theLocation) 
    {
        //A web service will be called and the user's current location will be stored in server
    }

    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)
    {
        super.onStartCommand(intent, flags, startId);       
        return START_STICKY;
    }

    @Override
    public void onCreate()
    {
        initializeLocationManager();    
        itsLocationHandler.sendEmptyMessage(1);
    }

    private Handler itsLocationHandler = new Handler() 
    {
        @Override
        public void handleMessage(Message theMessage) 
        {
            if(theMessage.what == 1)
            {
                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());
                }
            }
        }
    };

    @Override
    public void onDestroy()
    {
        super.onDestroy();
    } 

    private void initializeLocationManager() 
    {
        if (mLocationManager == null) 
        {
            mLocationManager = (LocationManager) getApplicationContext().getSystemService(Context.LOCATION_SERVICE);
        }
    }
}

任何人都可以纠正我做错了什么。

谢谢。

最佳答案

自 Android 4.0 以来,操作系统在终止不必要的进程方面变得更加积极。如果即使您的应用程序在后台运行,您也需要跟踪用户的位置,那么您需要将您的服务声明为前台服务。这会提高您的服务的优先级,这样 Android 就不太可能终止它,除非它确实需要资源。参见 Running a service in the foreground有关如何执行此操作的详细信息。

关于android - 当应用程序切换到后台时,我的 android 位置服务被杀死,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15392688/

相关文章:

android - 有没有办法在我们的应用程序中使用 Android 系统生成的通知

android - 清除 Android ListView

android - 我的 Android 应用程序能否检测到它是否是从 Eclipse 启动的?

android - value/arrays.xml 中的帧动画

Android 定位与 Google Play 服务

android - 计算在缓慢移动的交通中在Android中行驶的距离

android - Facebook Android SDK 4.0.0 没有获取个人资料信息

java - 崩溃 onLocationChanged() Android

java - 使用 "requesLocationUpdates()"时出现一些错误

android - LocationManager.getLastKnownLocation() 返回 null,永远不会调用 onLocationChanged