получение местоположения через GPS на Android с обработкой - PullRequest
0 голосов
/ 07 ноября 2018

Я работаю над небольшим приложением, которому нужен доступ к GPS, чтобы я мог отслеживать свою позицию. Однако я вставил некоторый код, который я могу использовать, чтобы проверить, работает ли он. Я перепишу его позже, чтобы его можно было настроить, но сейчас я просто хочу попробовать. НО , когда я запускаю приложение, все параметры остаются такими же, как они были инициализированы. У меня все разрешения включены, а также GPS включен. Даже вышел на улицу, чтобы проверить, работает ли он, но он всегда останется прежним. после того, как приложение спросит, разрешу ли я приложению использовать службу gps, все выполняется правильно. Возвращает положительный результат для отслеживания местоположения.

Вот код: (его также можно найти здесь: https://github.com/codeanticode/processing-android-tutorials/blob/master/location_permissions/ex1_gps/ex1_gps.pde)

/*****************************************************************************************
 Android Processing GPS example

 Query the phone's GPS and display the data on the screen

 Rolf van Gelder - v 22/02/2011 - http://cage.nl :: http://cagewebdev.com :: info@cage.nl

 Check the ACCESS_FINE_LOCATION permission in Sketch Permissions!

 *****************************************************************************************/

// Import needed Android libs
import android.content.Context;
import android.location.Location;
import android.location.LocationListener;
import android.location.LocationManager;
import android.provider.Settings;
import android.os.Bundle;
import android.Manifest;
import android.Manifest;
import android.content.Intent;
import android.content.pm.PackageManager;

// Set up the variables for the LocationManager and LocationListener
LocationManager locationManager;
MyLocationListener locationListener;

// Variables to hold the current GPS data
float currentLatitude  = 0;
float currentLongitude = 0;
float currentAccuracy  = 0;
String currentProvider = "";

boolean hasLocation = false;

void setup () {
  fullScreen();
  orientation(PORTRAIT);  
  textFont(createFont("SansSerif", 26 * displayDensity));
  textAlign(CENTER, CENTER);
  requestPermission("android.permission.ACCESS_FINE_LOCATION", "initLocation");
}

void draw() {
  background(0);
  if (hasPermission("android.permission.ACCESS_FINE_LOCATION")) {
    text("Latitude: " + currentLatitude + "\n" +
         "Longitude: " + currentLongitude + "\n" +
         "Accuracy: " + currentAccuracy + "\n" +
         "Provider: " + currentProvider, 0, 0, width, height);
  } else {
    text("No permissions to access location", 0, 0, width, height);
  }
}

void initLocation(boolean granted) {
  if (granted) {    
    Context context = getContext();
    locationListener = new MyLocationListener();
    locationManager = (LocationManager) context.getSystemService(Context.LOCATION_SERVICE);    
    // Register the listener with the Location Manager to receive location updates
    locationManager.requestLocationUpdates(LocationManager.NETWORK_PROVIDER, 0, 0, locationListener);
    hasLocation = true;
  } else {
    hasLocation = false;
  }
}

// Class for capturing the GPS data
class MyLocationListener implements LocationListener {
  public void onLocationChanged(Location location) {
    currentLatitude  = (float)location.getLatitude();
    currentLongitude = (float)location.getLongitude();
    currentAccuracy  = (float)location.getAccuracy();
    currentProvider  = location.getProvider();
  }

  public void onProviderDisabled (String provider) { 
    currentProvider = "";
  }

  public void onProviderEnabled (String provider) { 
    currentProvider = provider;
  }

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

1 Ответ

0 голосов
/ 16 ноября 2018

Решение:

  • измените «0, 0» в locationManager.requestLocationUpdates(LocationManager.NETWORK_PROVIDER, 0, 0, locationListener); на «1000, 0» в зависимости от того, как часто вы хотите получить текущую позицию в этом случае: 1000 мс. Я не буду говорить о втором 0.

  • также вместо NETWORK_PROVIDER используйте GPS_PROVIDER, чтобы получить свой истинный GPS-поз вместо сетевой позиции.

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...