正在尝试在 Android 设备上检索位置...适用于模拟器,但不适用于真实设备
Posted
技术标签:
【中文标题】正在尝试在 Android 设备上检索位置...适用于模拟器,但不适用于真实设备【英文标题】:Attempting to retrieve location on Android Device... works on emulator but not real device 【发布时间】:2019-05-06 10:28:45 【问题描述】:我的问题:我正在尝试创建一个可以在大学范围内使用的应用程序。它需要不断访问位置。我按照在线教程完成了下面的代码。此代码非常适用于我的 android 模拟器,但不适用于我的设备。我在我的设备上收到了许可请求,但没有任何更新。现在,奇怪的是,如果我在我的设备上使用模拟位置应用程序,这个应用程序确实可以工作。但仅限于模拟位置应用程序。
有人对如何解决这个问题有任何建议吗? (xml文件只是一个文本视图。就像我说的,我只是先测试一下)
package com.example.dylan.locationexample;
import android.Manifest;
import android.content.pm.PackageManager;
import android.location.Location;
import android.location.LocationListener;
import android.location.LocationManager;
import android.os.Build;
import android.support.annotation.NonNull;
import android.support.v4.app.ActivityCompat;
import android.support.v4.content.ContextCompat;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.util.Log;
import android.widget.TextView;
import android.widget.Toast;
public class MainActivity extends AppCompatActivity
private LocationManager locationManager;
private LocationListener locationListener;
@Override
protected void onCreate(Bundle savedInstanceState)
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
locationManager = (LocationManager) this.getSystemService(LOCATION_SERVICE);
locationListener = new LocationListener()
@Override
public void onLocationChanged(Location location)
Log.d("Location: ", location.toString());
TextView tv = findViewById(R.id.textView);
tv.setText(tv.getText() + Double.toString(location.getLatitude()) + "\t" + Double.toString(location.getLongitude()) + "\n");
@Override
public void onStatusChanged(String provider, int status, Bundle extras)
@Override
public void onProviderEnabled(String provider)
@Override
public void onProviderDisabled(String provider)
;
if (ActivityCompat.checkSelfPermission(this, Manifest.permission.ACCESS_FINE_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.
ActivityCompat.requestPermissions(this, new String[]Manifest.permission.ACCESS_FINE_LOCATION,1);
else
locationManager.requestLocationUpdates(LocationManager.GPS_PROVIDER, 0, 0, locationListener);
@Override
public void onRequestPermissionsResult(int requestCode, @NonNull String[] permissions, @NonNull int[] grantResults)
super.onRequestPermissionsResult(requestCode, permissions, grantResults);
if(grantResults.length>0 && grantResults[0] == PackageManager.PERMISSION_GRANTED)
if(ContextCompat.checkSelfPermission(this,Manifest.permission.ACCESS_FINE_LOCATION) == PackageManager.PERMISSION_GRANTED)
locationManager.requestLocationUpdates(LocationManager.GPS_PROVIDER, 0, 0, locationListener);
【问题讨论】:
【参考方案1】:请确保清单中有以下内容
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
并在您的物理设备上启用 gps。
如果您仍然遇到问题,请检查您手机上该应用的权限设置。您可能拒绝了访问位置的权限。
这是我正在使用的代码:
locationManager = (LocationManager) context.getSystemService(Context.LOCATION_SERVICE);
Location location = locationManager.getLastKnownLocation(LocationManager.GPS_PROVIDER);
com.google.android.gms.location.LocationListener mLocationListener = new com.google.android.gms.location.LocationListener()
@Override
public void onLocationChanged(final Location location)
listener.onLocation(location);
;
if(location != null)
listener.onLocation(location);
else
locationListener = new android.location.LocationListener()
@Override
public void onLocationChanged(Location location)
listener.onLocation(location);
locationManager.removeUpdates(locationListener);
Log.d(TAG,"Location: " + String.valueOf(location.getLongitude()));
@Override
public void onStatusChanged(String s, int i, Bundle bundle)
@Override
public void onProviderEnabled(String s)
@Override
public void onProviderDisabled(String s)
;
locationManager.requestLocationUpdates(LocationManager.GPS_PROVIDER, 0, 0, locationListener);
【讨论】:
感谢您的回复。我已将这两个都添加到清单中,并且确实允许访问设备上的位置。我检查了很多次。 我还尝试在我的设备上启用 3 个不同的位置选项,“高精度、省电、仅电话”,但它们似乎都没有改变任何东西。我真的很困惑为什么它可以与模拟位置应用程序而不是我的真实位置一起使用 @DylanWoodworth 你用其他手机试过了吗? 我没有。不幸的是,我的两个室友都有 iPhone,我目前无法使用其他安卓设备。 它对你有用吗?亲爱的,我会相信你的话。感谢您的回复。奇怪的是它不能在我的手机上工作......我批准了权限。尝试卸载了几次,但没有成功。【参考方案2】:我实际上遇到了同样的事情,我找到了一个解决方案,让它在物理设备上工作。 禁用 WI-FI 连接,它可以工作。我知道它是如何或为什么起作用的。现在我刚刚打开了 WI-Fi 连接,它又可以正常工作了。如果 Wi-fi 对您不起作用,请尝试重新启动设备。
您可能还需要等待一段时间,然后它才能在房子周围移动时开始获取位置,因此它会不断变化。
【讨论】:
以上是关于正在尝试在 Android 设备上检索位置...适用于模拟器,但不适用于真实设备的主要内容,如果未能解决你的问题,请参考以下文章