2017-02-17 41 views
1

我正在寻找一种解决方案,以在Android API 17(Android 4.2)中的特定时间间隔内获取用户位置以及手机被锁定时的位置。手机锁定时获取用户在Android中的位置

我已经尝试了一些不同的代码,检查了很多教程并在网上几乎所有地方都进行了搜索。解决方案可能在那里,但我认为这是Android开发和解释不同的正确解决方案和方法缺乏经验的组合。

起初我有一些非常基本的代码,当屏幕打开时它工作得很好。即使在后台,该位置也得到了更新(因为我可以通过Toast消息检查经度和纬度)。 我用一个处理器可以这样做:

public void locationRunnable() { 
    final Handler locationHandler = new Handler(); 
    final int distanceDelay = 5000; // milliseconds 

    locationHandler.postDelayed(new Runnable(){ 
     public void run() { 
      // code 
      mMap.clear(); 

      if (ActivityCompat.checkSelfPermission(this, android.Manifest.permission.ACCESS_FINE_LOCATION) != PackageManager.PERMISSION_GRANTED && ActivityCompat.checkSelfPermission(this, android.Manifest.permission.ACCESS_COARSE_LOCATION) != PackageManager.PERMISSION_GRANTED) { 
       // TODO: Consider calling 
       // ActivityCompat#requestPermissions 
       // here to request the missing permissions, and then overriding 
       // public void onRequestPermissionsResult(int requestCode, String[] permissions, 
       //           int[] grantResults) 
       // to handle the case where the user grants the permission. See the documentation 
       // for ActivityCompat#requestPermissions for more details. 
       return; 
      } 

      mMap.setMyLocationEnabled(true); 
      mMap.setBuildingsEnabled(true); 
      mMap.getUiSettings().setMyLocationButtonEnabled(false); 

      LocationManager locationManager = (LocationManager) getSystemService(Context.LOCATION_SERVICE); 
      Criteria criteria = new Criteria(); 
      String provider = locationManager.getBestProvider(criteria, true); 

      myLocation = locationManager.getLastKnownLocation(provider); 

      if (myLocation != null) { 
       latitudeCurrentPosition = myLocation.getLatitude(); 
       longitudeCurrentPosition = myLocation.getLongitude(); 
      } 

      currentPattern = shortTest; 
      Notification.Builder notificationBuilderChecking = new Notification.Builder(this) 
        .setSmallIcon(R.mipmap.ic_launcher) 
        .setLargeIcon(BitmapFactory.decodeResource(getResources(), R.mipmap.ic_launcher)) 
        .setContentTitle("Test app") 
        .setAutoCancel(true) 
        .setOnlyAlertOnce(false) 
        .setContentText("Getting location!") 
        .setPriority(Notification.PRIORITY_MAX) 
        .setLights(0xffffffff, 200, 200) 
        .setVibrate(currentPattern); 

      Notification notification2 = notificationBuilderChecking.build(); 

      NotificationManager notificationMngr2 = (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE); 
      notificationMngr2.notify(NOTIFICATION_ID, notification2); 

      locationHandler.postDelayed(this, distanceDelay); 
     } 

    }, distanceDelay); 

} 

这只是一个片断和目的是在后台,当屏幕被锁定,这将每10秒循环。它确实如此。即使手机被锁定,但只有约3次。 3次后,计时器上升,手机振动频率较低(方式中打盹功能?)。 此外,手机确实振动,但位置未更新。当我在前台使用应用程序解锁手机时,位置仍然位于锁定手机的位置。一段时间后(10秒)它会更新。我在地图上用一个标记来检查。

再次说明:它在手机解锁时有效。

现在我试图使用服务,服务(意图服务),或广播接收器,并开始一个新的线程,但我不知道如何和没有工作。

一些最后的代码,我有包含一个不正常的广播接收器和最新的代码包含一个AlarmManager:

public void getLocation(Context context) { 

    AlarmManager am = (AlarmManager) context.getSystemService(Context.ALARM_SERVICE); 
    Intent intent = new Intent(context, AlarmIntent.class); 
    PendingIntent pi = PendingIntent.getBroadcast(context, 0, intent, 0); 
    //After after 30 seconds 
    am.setRepeating(AlarmManager.ELAPSED_REALTIME_WAKEUP, System.currentTimeMillis(), 10000, pi); 


    context.getSystemService(Context.CONNECTIVITY_SERVICE); 

    mMap.clear(); 

    mMap.setMyLocationEnabled(true); 
    mMap.getUiSettings().setMyLocationButtonEnabled(false); 

    LocationManager locationManager = (LocationManager) context.getSystemService(Context.LOCATION_SERVICE); 
    Criteria criteria = new Criteria(); 
    String provider = locationManager.getBestProvider(criteria, true); 

    myLocation = locationManager.getLastKnownLocation(provider); 

    latitudeCurrentPosition = myLocation.getLatitude(); 
    longitudeCurrentPosition = myLocation.getLongitude(); 

    LatLng latLngCurrent = new LatLng(latitudeCurrentPosition, longitudeCurrentPosition); 

    mMap.moveCamera(CameraUpdateFactory.newLatLng(latLngCurrent)); 
    mMap.animateCamera(CameraUpdateFactory.zoomTo(distZoom)); 

    currentPattern = shortTest; 
    showNotification(context); 

    mHereIAm = mMap.addMarker(new MarkerOptions() 
      .position(new LatLng(latitudeCurrentPosition, longitudeCurrentPosition)) 
      .title(weAreHere) 
      .draggable(false) 
      .icon(BitmapDescriptorFactory 
        .fromResource(R.drawable.marker_iconv3))); 
    mHereIAm.setTag(0); 
    mHereIAm.showInfoWindow(); 
} 

AndroidManifest权限:

<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" /> 
<uses-permission android:name="android.permission.VIBRATE" /> 
<uses-permission android:name="android.permission.WAKE_LOCK" /> 
<uses-permission android:name="com.android.alarm.permission.SET_ALARM" /> 

但在长期的10000, Android Studio告诉我“Android 5.1的价值将被强制升至60000;不要依赖这个......”等。所以AlarmManager也没有用。 随着最后的代码,我的应用程序甚至不再运行。

但仍然:震动和东西仍然发生,但位置更新不。

总之: 我需要一些基本的(至少,我认为它不是那么难,因为唯一的问题是,它不能在屏幕锁定时工作)代码,更新我的位置确定的,可变的区间。

也许我必须使用Handler/Runnable,启动一个新的Thread,使用Service或Broadcast Receiver。也许一个AlarmManager也可以工作,但我不知道如何以及使用哪一个。

这是我的第一篇文章。如果有什么错过或者你们需要更多信息,请询问。我试图尽可能精确,而不用太多开销。

编辑01 我可以使用Job Service吗? - 我已将API更新至21,因此我可以使用此服务,但我不知道这是我寻找的正确解决方案吗?有一些伟大的教程使用它。

编辑02 让我用更少的开销更清楚:我在寻找一个解决方案来获得当设备被锁定的用户的当前位置:有一个API,一个服务,一个IntentService,一个BroadcastReceiver。 .. - 每个教程都告诉我不同​​的东西,即使在Stack Overflow,我也遇到了找到正确解决方案的麻烦。 我能够使用服务以及意图服务,但由于某些错误,我无法请求任何位置更新,例如: java.lang.RuntimeException: Unable to start activity ComponentInfo{com.name.name/com.name.name.MapsActivity}: java.lang.NullPointerException: Attempt to invoke virtual method 'void com.google.android.gms.maps.GoogleMap.setMyLocationEnabled(b‌​oolean)' on a null object reference - 正在搜索此错误的解决方案,稍后再提供另一个错误,并且,然后......我陷入了一个错误循环和大量不必要的代码。

我希望有一个简单的方法来获取用户的位置,你们可以帮助我。再次感谢。

编辑03 我已经按照上this tutorial指令和位置检查。请看下面的代码:

public class LocationService extends Service implements LocationListener {

private final Context mContext; 

// flag for GPS status 
boolean isGPSEnabled = false; 

// flag for network status 
boolean isNetworkEnabled = false; 

// flag for GPS status 
boolean canGetLocation = false; 

Location location; // location 
double latitude; // latitude 
double longitude; // longitude 

// The minimum distance to change Updates in meters 
private static final long MIN_DISTANCE_CHANGE_FOR_UPDATES = 10; // 10 meters 

// The minimum time between updates in milliseconds 
private static final long MIN_TIME_BW_UPDATES = 1000 * 60 * 1; // 1 minute 

// Declaring a Location Manager 
protected LocationManager locationManager; 

public LocationService(Context context) { 
    this.mContext = context; 
    getLocation(); 
} 

public Location getLocation() { 
    try { 
     locationManager = (LocationManager) mContext 
       .getSystemService(LOCATION_SERVICE); 

     // getting GPS status 
     isGPSEnabled = locationManager 
       .isProviderEnabled(LocationManager.GPS_PROVIDER); 

     // getting network status 
     //isNetworkEnabled = locationManager 
     //  .isProviderEnabled(LocationManager.NETWORK_PROVIDER); 

     if (!isGPSEnabled && !isNetworkEnabled) { 
      // no network provider is enabled 
     } else { 
      this.canGetLocation = true; 
      // First get location from Network Provider 
      if (isNetworkEnabled) { 
       locationManager.requestLocationUpdates(
         LocationManager.NETWORK_PROVIDER, 
         MIN_TIME_BW_UPDATES, 
         MIN_DISTANCE_CHANGE_FOR_UPDATES, this); 
       Log.d("Network", "Network"); 
       if (locationManager != null) { 
        location = locationManager 
          .getLastKnownLocation(LocationManager.NETWORK_PROVIDER); 
        if (location != null) { 
         latitude = location.getLatitude(); 
         longitude = location.getLongitude(); 
        } 
       } 
      } 
      // if GPS Enabled get lat/long using GPS Services 
      if (isGPSEnabled) { 
       if (location == null) { 
        locationManager.requestLocationUpdates(
          LocationManager.GPS_PROVIDER, 
          MIN_TIME_BW_UPDATES, 
          MIN_DISTANCE_CHANGE_FOR_UPDATES, this); 
        Log.d("GPS Enabled", "GPS Enabled"); 
        if (locationManager != null) { 
         location = locationManager 
           .getLastKnownLocation(LocationManager.GPS_PROVIDER); 
         if (location != null) { 
          latitude = location.getLatitude(); 
          longitude = location.getLongitude(); 
         } 
        } 
       } 
      } 
     } 

    } catch (Exception e) { 
     e.printStackTrace(); 
    } 

    return location; 
} 

/** 
* Stop using GPS listener 
* Calling this function will stop using GPS in your app 
* */ 
public void stopUsingGPS(){ 
    if(locationManager != null){ 
     locationManager.removeUpdates(LocationService.this); 
    } 
} 

/** 
* Function to get latitude 
* */ 
public double getLatitude(){ 
    if(location != null){ 
     latitude = location.getLatitude(); 
    } 

    // return latitude 
    return latitude; 
} 

/** 
* Function to get longitude 
* */ 
public double getLongitude(){ 
    if(location != null){ 
     longitude = location.getLongitude(); 
    } 

    // return longitude 
    return longitude; 
} 

/** 
* Function to check GPS/wifi enabled 
* @return boolean 
* */ 
public boolean canGetLocation() { 
    return this.canGetLocation; 
} 

/** 
* Function to show settings alert dialog 
* On pressing Settings button will lauch Settings Options 
* */ 
public void showSettingsAlert(){ 
    AlertDialog.Builder alertDialog = new AlertDialog.Builder(mContext); 

    // Setting Dialog Title 
    alertDialog.setTitle("GPS is settings"); 

    // Setting Dialog Message 
    alertDialog.setMessage("GPS is not enabled. Do you want to go to settings menu?"); 

    // On pressing Settings button 
    alertDialog.setPositiveButton("Settings", new DialogInterface.OnClickListener() { 
     public void onClick(DialogInterface dialog,int which) { 
      Intent intent = new Intent(Settings.ACTION_LOCATION_SOURCE_SETTINGS); 
      mContext.startActivity(intent); 
     } 
    }); 

    // on pressing cancel button 
    alertDialog.setNegativeButton("Cancel", new DialogInterface.OnClickListener() { 
     public void onClick(DialogInterface dialog, int which) { 
      dialog.cancel(); 
     } 
    }); 

    // Showing Alert Message 
    alertDialog.show(); 
} 

@Override 
public void onLocationChanged(Location location) { 
} 

@Override 
public void onProviderDisabled(String provider) { 
} 

@Override 
public void onProviderEnabled(String provider) { 
} 

@Override 
public void onStatusChanged(String provider, int status, Bundle extras) { 
} 

@Override 
public IBinder onBind(Intent arg0) { 
    return null; 
} 

}

我已经禁用网络位置,并只允许GPS位置进行测试 - 测试的两种。

而且我MapsActivity:

public void getLocation(){ 
    gps = new LocationService(MapsActivity.this); 
    if(gps.canGetLocation()) { // gps enabled} // return boolean true/false 
     latitudeCurrentPosition = gps.getLatitude(); // returns latitude 
     longitudeCurrentPosition = gps.getLongitude(); // returns longitude 

     latLngCurrent = new LatLng(latitudeCurrentPosition, longitudeCurrentPosition); 

     Toast toastLatCur = makeText(getApplicationContext(), "Lat Current: " + latitudeCurrentPosition + "" ,Toast.LENGTH_SHORT); 
     toastLatCur.show(); 

     Toast toastLongCur = makeText(getApplicationContext(), "Long Current: " + longitudeCurrentPosition + "" ,Toast.LENGTH_SHORT); 
     toastLongCur.show(); 
    } 

    else { 
     gps.showSettingsAlert(); 
    } 

    if(goToLocation){ 
     mMap.moveCamera(CameraUpdateFactory.newLatLng(latLngCurrent)); 
     goToLocation = false; 

     if(firstStart){ 
      mMap.animateCamera(CameraUpdateFactory.zoomTo(distZoom)); 
      firstStart = false; 
     } 
    } 

    vibrateNotification(); 
} 

当屏幕被锁定,手机振动,我在vibrateNotificatoin()告诉 - 完美的作品每10秒。但位置不会更新!所以服务不是解决这个问题的正确方法。帮帮我!

回答

1

您应该使用服务来执行即使应用程序未运行时也需要完成的任务。试一下。

+0

我现在就试试这个。 –

+0

IntentService或常规服务? IntentService给我:'java.lang.RuntimeException:无法启动活动ComponentInfo {com.name.name/com.name.name.MapsActivity}:java.lang.NullPointerException:试图调用虚拟方法'void com.google。 android.gms.maps.GoogleMap.setMyLocationEnabled(布尔)'空对象引用' –

+0

@ k.schaaf尝试常规的。 –

0

所以,我跟着一些教程和搜索,并试图更多地找出解决办法:

  1. 创建一个新的服务:
package com.name.name; 


import android.app.AlertDialog; 
import android.app.Notification; 
import android.app.NotificationManager; 
import android.app.Service; 
import android.content.Context; 
import android.content.DialogInterface; 
import android.content.Intent; 
import android.graphics.BitmapFactory; 
import android.location.Location; 
import android.location.LocationListener; 
import android.location.LocationManager; 
import android.os.Bundle; 
import android.os.IBinder; 
import android.provider.Settings; 
import android.util.Log; 

import static com.name.name.MapsActivity.NOTIFICATION_ID; 

public class LocationService extends Service implements LocationListener { 

    private final Context mContext; 

    // flag for GPS status 
    boolean isGPSEnabled = false; 

    // flag for network status 
    boolean isNetworkEnabled = false; 

    // flag for GPS status 
    boolean canGetLocation = false; 

    Location location; // location 
    double latitude; // latitude 
    double longitude; // longitude 

    // The minimum distance to change Updates in meters 
    private static final long MIN_DISTANCE_CHANGE_FOR_UPDATES = 10; // 10 meters 

    // The minimum time between updates in milliseconds 
    private static final long MIN_TIME_BW_UPDATES = 1000 * 60 * 1; // 1 minute 

    // Declaring a Location Manager 
    protected LocationManager locationManager; 

    public LocationService(Context context) { 
     this.mContext = context; 
     getLocation(); 
    } 

    public Location getLocation() { 
     try { 
      locationManager = (LocationManager) mContext 
        .getSystemService(LOCATION_SERVICE); 

      // getting GPS status 
      isGPSEnabled = locationManager 
        .isProviderEnabled(LocationManager.GPS_PROVIDER); 

      // getting network status 
      isNetworkEnabled = locationManager 
        .isProviderEnabled(LocationManager.NETWORK_PROVIDER); 

      if (!isGPSEnabled && !isNetworkEnabled) { 
       // no network provider is enabled 
      } else { 
       this.canGetLocation = true; 
       // First get location from Network Provider 
       if (isNetworkEnabled) { 
        locationManager.requestLocationUpdates(
          LocationManager.NETWORK_PROVIDER, 
          MIN_TIME_BW_UPDATES, 
          MIN_DISTANCE_CHANGE_FOR_UPDATES, this); 
        Log.d("Network", "Network"); 
        if (locationManager != null) { 
         location = locationManager 
           .getLastKnownLocation(LocationManager.NETWORK_PROVIDER); 
         if (location != null) { 
          latitude = location.getLatitude(); 
          longitude = location.getLongitude(); 
         } 
        } 
       } 
       // if GPS Enabled get lat/long using GPS Services 
       if (isGPSEnabled) { 
        if (location == null) { 
         locationManager.requestLocationUpdates(
           LocationManager.GPS_PROVIDER, 
           MIN_TIME_BW_UPDATES, 
           MIN_DISTANCE_CHANGE_FOR_UPDATES, this); 
         Log.d("GPS Enabled", "GPS Enabled"); 
         if (locationManager != null) { 
          location = locationManager 
            .getLastKnownLocation(LocationManager.GPS_PROVIDER); 
          if (location != null) { 
           latitude = location.getLatitude(); 
           longitude = location.getLongitude(); 
          } 
         } 
        } 
       } 
      } 

     } catch (Exception e) { 
      e.printStackTrace(); 
     } 

     return location; 
    } 

    /** 
    * Stop using GPS listener 
    * Calling this function will stop using GPS in your app 
    * */ 
    public void stopUsingGPS(){ 
     if(locationManager != null){ 
      locationManager.removeUpdates(LocationService.this); 
     } 
    } 

    /** 
    * Function to get latitude 
    * */ 
    public double getLatitude(){ 
     if(location != null){ 
      latitude = location.getLatitude(); 
     } 

     // return latitude 
     return latitude; 
    } 

    /** 
    * Function to get longitude 
    * */ 
    public double getLongitude(){ 
     if(location != null){ 
      longitude = location.getLongitude(); 
     } 

     // return longitude 
     return longitude; 
    } 

    /** 
    * Function to check GPS/wifi enabled 
    * @return boolean 
    * */ 
    public boolean canGetLocation() { 
     return this.canGetLocation; 
    } 

    /** 
    * Function to show settings alert dialog 
    * On pressing Settings button will lauch Settings Options 
    * */ 
    public void showSettingsAlert(){ 
     AlertDialog.Builder alertDialog = new AlertDialog.Builder(mContext); 

     // Setting Dialog Title 
     alertDialog.setTitle("GPS is settings"); 

     // Setting Dialog Message 
     alertDialog.setMessage("GPS is not enabled. Do you want to go to settings menu?"); 

     // On pressing Settings button 
     alertDialog.setPositiveButton("Settings", new DialogInterface.OnClickListener() { 
      public void onClick(DialogInterface dialog,int which) { 
       Intent intent = new Intent(Settings.ACTION_LOCATION_SOURCE_SETTINGS); 
       mContext.startActivity(intent); 
      } 
     }); 

     // on pressing cancel button 
     alertDialog.setNegativeButton("Cancel", new DialogInterface.OnClickListener() { 
      public void onClick(DialogInterface dialog, int which) { 
       dialog.cancel(); 
      } 
     }); 

     // Showing Alert Message 
     alertDialog.show(); 
    } 

    @Override 
    public void onLocationChanged(Location location) { 
    } 

    @Override 
    public void onProviderDisabled(String provider) { 
    } 

    @Override 
    public void onProviderEnabled(String provider) { 
    } 

    @Override 
    public void onStatusChanged(String provider, int status, Bundle extras) { 
    } 

    @Override 
    public IBinder onBind(Intent arg0) { 
     return null; 
    } 

} 
  • 每次运行此服务时,都要使用Handler和Runnable并使用Wakelock:
    • 在OnCreate中:
  • PowerManager powerManager = (PowerManager) getSystemService(POWER_SERVICE); 
        wakeLock = powerManager.newWakeLock(PowerManager.PARTIAL_WAKE_LOCK, 
          "MyWakelockTag"); 
    
    • 做的东西与获得性数据形成LocationService。
    • 启动此功能时,你需要的数据和做的事情与它:

    公共无效startDoingStuffWithLocationData(){

       final Runnable runnable= new Runnable() { 
            public void run() { 
             // do stuff here 
             getLocation(); 
             } 
    
             else { 
              handler.postDelayed(this, 10000); 
             } 
            } 
           }; 
           runnable.run(); 
          } 
        } 
    
    • 获取从服务中的数据:

    公共无效的getLocation(){

    wakeLock.acquire(); 
    
        gps = new LocationService(MapsActivity.this); 
        if(gps.canGetLocation()) { // gps enabled} // return boolean true/false 
         latitudeCurrentPosition = gps.getLatitude(); // returns latitude 
         longitudeCurrentPosition = gps.getLongitude(); // returns longitude 
    
         latLngCurrent = new LatLng(latitudeCurrentPosition, longitudeCurrentPosition); 
        } 
    
        else { 
         gps.showSettingsAlert(); 
        } 
    
        wakeLock.release(); 
    } 
    

    请务必使用release()函数来结束唤醒锁定,以节省电池。