Получить текущее местоположение (название города) без GPS и мобильной сети - PullRequest
0 голосов
/ 16 ноября 2018

У меня есть Android-планшет, на котором нет SIM-карты и GPS, а также режим экономии заряда батареи.Планшет подключен к интернету через Ethernet (с помощью кабеля) и подключен к локальной сети через WIFI.Я пишу код для поиска текущего местоположения (название города), и он хорошо работает в моем телефоне.(GPS моего телефона активен и подключен к Интернету через Wi-Fi (модем) или мобильную сеть).

package com.xenon.location;
import android.app.Activity;
import android.app.Service;
import android.content.Context;
import android.content.DialogInterface;
import android.content.Intent;
import android.content.pm.PackageManager;
import android.location.Address;
import android.location.Geocoder;
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.support.annotation.Nullable;
import android.support.v4.app.ActivityCompat;
import android.support.v4.content.ContextCompat;
import android.support.v7.app.AlertDialog;

import java.io.IOException;
import java.util.List;
import java.util.Locale;

import static android.content.Context.LOCATION_SERVICE;

public class GPSTracker extends Service implements LocationListener {

private final Context mContext;
private final Activity mActivity;

boolean isGPSEnabled = false;
boolean isNetworkEnabled = false;
boolean canGetLocation = false;

Location location;
double latitude;
double longitude;

private static final long MIN_DISTANCE_CHANGE_FOR_UPDATES = 10;

private static final long MIN_TIME_BW_UPDATES = 1000 * 60 * 1;

protected LocationManager locationManager;

public GPSTracker(Activity activity) {
    this.mContext = activity.getBaseContext();
    this.mActivity = activity;
    getLocation();
}

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

        isGPSEnabled = locationManager.isProviderEnabled(LocationManager.GPS_PROVIDER);
        isNetworkEnabled = locationManager.isProviderEnabled(LocationManager.NETWORK_PROVIDER);

        if (!isGPSEnabled && !isNetworkEnabled) {
          // no network provider is enabled
        }else{
            this.canGetLocation = true;
            if (isNetworkEnabled) {
                if (ContextCompat.checkSelfPermission(
                        mActivity, android.Manifest.permission.ACCESS_COARSE_LOCATION) != PackageManager.PERMISSION_GRANTED) {
                    ActivityCompat.requestPermissions(mActivity
                            , new String[]{android.Manifest.permission.ACCESS_COARSE_LOCATION}
                            , 0);
                }
                locationManager.requestLocationUpdates(
                        LocationManager.NETWORK_PROVIDER,
                        MIN_TIME_BW_UPDATES,
                        MIN_DISTANCE_CHANGE_FOR_UPDATES, this);
                if (locationManager != null) {
                    location = locationManager
                            .getLastKnownLocation(LocationManager.NETWORK_PROVIDER);
                    if (location != null) {
                        latitude = location.getLatitude();
                        longitude = location.getLongitude();
                    }
                }
            }
            if (isGPSEnabled) {
                if (location == null) {
                    locationManager.requestLocationUpdates(
                            LocationManager.GPS_PROVIDER,
                            MIN_TIME_BW_UPDATES,
                            MIN_DISTANCE_CHANGE_FOR_UPDATES, this);
                    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;
}

public void stopUsingGPS() {
    if (locationManager != null) {
        if (ContextCompat.checkSelfPermission(mActivity, android.Manifest.permission.ACCESS_COARSE_LOCATION) != PackageManager.PERMISSION_GRANTED) {

            ActivityCompat.requestPermissions(mActivity, new String[]{android.Manifest.permission.ACCESS_COARSE_LOCATION},
                    0);
            locationManager.removeUpdates(GPSTracker.this);
        }
    }
}

public double getLatitude() {
    if (location != null) {
        latitude = location.getLatitude();
    }
    return latitude;
}

public double getLongitude() {
    if (location != null) {
        longitude = location.getLongitude();
    }
    return longitude;
}

public String getCityName() {
    String result = "";
    if (location != null) {
        double latitude, longitude;
        List<Address> list;
        Locale locale = new Locale("tr");
        Geocoder geocoder = new Geocoder(mContext, locale);
        try {
            list = geocoder.getFromLocation(getLatitude(), getLongitude(), 2);

            Address address = list.get(0);

/*
            String gpsMsg = "CountryCode: " + address.getCountryCode() +
                    " ,AdminArea : " + address.getAdminArea() +
                    " ,CountryName : " + address.getCountryName() +
                    " ,SubLocality : " + address.getSubLocality();
*/
            result = address.getAdminArea();

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

        catch (Exception e){

        }
    }
    return result;
}

public boolean canGetLocation() {
    return this.canGetLocation;
}

public void showSettingsAlert() {
    AlertDialog.Builder alertDialog = new AlertDialog.Builder(mContext);

    alertDialog.setTitle("GPS is settings");

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

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

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

    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) {
}

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

при запуске его на планшете:

boolean isNetworkEnabled = false;
boolean canGetLocation = false;
        locationManager = (LocationManager) mContext.getSystemService(LOCATION_SERVICE);

        isGPSEnabled = locationManager.isProviderEnabled(LocationManager.GPS_PROVIDER);
        isNetworkEnabled = locationManager.isProviderEnabled(LocationManager.NETWORK_PROVIDER);

isNetworkEnabled и canGetLocation всегдавернуть ложь;

1 Ответ

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

Вы не можете найти местоположение, потому что вы отключили GPS. но если вы хотите получить ваше местоположение без GPS, попробуйте получить информацию о ячейке (MNC MCC CELLID AND LAC), где ваше устройство подключено, затем попробуйте использовать API (unwiredlab.com) для преобразования этой информации о ячейке в местоположение.

...