Android Location LocationListener 总是调用 onProviderDisabled
Posted
技术标签:
【中文标题】Android Location LocationListener 总是调用 onProviderDisabled【英文标题】:Android Location LocationListener always call onProviderDisabled 【发布时间】:2017-01-29 08:25:15 【问题描述】:我的设备:android 6.0.1,这是我的应用程序设置。
compileSdkVersion 24
buildToolsVersion "24.0.1"
minSdkVersion 21
targetSdkVersion 24
LocationListener onLocationChanged()
永远不会被调用。它总是调用onProviderDisabled()
。
这里是MainActivity.java
TextView mTextView;
LocationManager mLocationManager;
@Override
protected void onCreate(Bundle savedInstanceState)
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
mTextView = (TextView) findViewById(R.id.tv);
if (ActivityCompat.checkSelfPermission(this, Manifest.permission.ACCESS_FINE_LOCATION) != PackageManager.PERMISSION_GRANTED && ActivityCompat.checkSelfPermission(this, Manifest.permission.ACCESS_COARSE_LOCATION) != PackageManager.PERMISSION_GRANTED)
return;
mLocationManager = (LocationManager) this
.getSystemService(Context.LOCATION_SERVICE);
mLocationManager.requestLocationUpdates(LocationManager.NETWORK_PROVIDER, 1 * 1000, 0.00001F,
locationListener);
private void updateUIToNewLocation(Location location)
Log.d("hello","updateUIToNewLocation = ");
if (location != null)
mTextView.setText("Latitude:" + location.getLatitude() + "\nLongitude:"
+ location.getLongitude());
else
mTextView.setText("error");
LocationListener locationListener = new LocationListener()
public void onLocationChanged(Location location)
Log.d("hello","onLocationChanged");
System.out.println("onLocationChanged");
System.out.println("Latitude:" + location.getLatitude() + "\nLongitude"
+ location.getLongitude());
updateUIToNewLocation(location);
public void onStatusChanged(String provider, int status, Bundle extras)
Log.d("hello","onStatusChanged");
System.out.println("onStatusChanged");
System.out.println("privider:" + provider);
System.out.println("status:" + status);
System.out.println("extras:" + extras);
public void onProviderEnabled(String provider)
Log.d("hello","onProviderEnabled");
System.out.println("onProviderEnabled");
System.out.println("privider:" + provider);
public void onProviderDisabled(String provider)
Log.d("hello","onProviderDisabled");
System.out.println("onProviderDisabled");
System.out.println("privider:" + provider);
;
这是清单 xml 中的权限和 Activity
标签。
<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION"/>
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
<!-- Needed only if your app targets Android 5.0 (API level 21) or higher. -->
<uses-feature android:name="android.hardware.location.network"/>
<uses-feature android:name="android.hardware.location.gps" />
<uses-sdk
android:minSdkVersion="23"
android:targetSdkVersion="24"/>
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme">
<activity
android:name=".MainActivity"
android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.MAIN"/>
<category android:name="android.intent.category.LAUNCHER"/>
</intent-filter>
</activity>
</application>
这个应用程序可以在Android 5.1 上直接运行,但在Android 6.0.1 上无法运行。希望有人可以帮助我。我不明白这个问题。
【问题讨论】:
我知道这一点。 ***.com/questions/6183220/…我不敢相信这困扰了我两天。 找到解决方案了吗? 我给的链接解决了这个问题 【参考方案1】:我也面临同样的问题,在我的案例解决方案中,我发现在移动中转到 设置->位置->位置模式->更改为适当的模式(在您使用的提供商之外)。 希望也适用于您的情况。
【讨论】:
谢谢,将定位精度设置为高是解决方案!以上是关于Android Location LocationListener 总是调用 onProviderDisabled的主要内容,如果未能解决你的问题,请参考以下文章
调用虚拟方法 double android.location.Location.getLatitude
Android:Location.distanceTo 无法正常工作?
在空对象引用上调用虚拟方法“double android.location.Location.getLatitude()”时出错
无法在 android 中强制转换为 android.location.LocationListener