我正在扭动一个简单的天气程序。我使用天气Api,必须发送电话的位置以获取天气数据。如您所知,我不需要精确的位置,因此不需要GPS,也不需要ACCESS_FINE_LOCATION。我需要的是-从 NETWORK_PROVIDER 获取我的位置。但这是问题所在。
起初,我尝试使用 LocationManager 和 LocationListener 。我在手机设置中启用了我的WiFi和位置。我想让我的应用程序在室内工作,这很重要,因此无需步行即可更改坐标, LocationManager 会做出响应。首先,我检查最后一个已知的位置。
Location location = mLocationManager.getLastKnownLocation(LOCATION_PROVIDER);
实际上,通常它不起作用。所以我得到null作为位置。尤其是当您关闭智能手机设置中的位置并在几分钟后将其打开。
好的,您没有lastKnownLocation,请让我们获取。我使用 requestLocationUpdates()获取当前位置:
mLocationManager.requestLocationUpdates(LocationManager.NETWORK_PROVIDER, 1000, 0, mLocationListener);
现在魔术开始了…… requestLocationUpdates()在某个时候(几个小时一次或一分钟几次)起作用了。但是大多数时候它没有反应。在互联网上进行了许多搜索之后,我发现了Google Api,特别是 FusedLocationProviderClient 类。但是同样的故事再次发生。但是现在我可以理解未调用 requestLocationUpdates()了。
mFusedLocationClient.requestLocationUpdates(mLocationRequest, mLocationCallback, null);
我决定放一个按钮,查看它是否发送任何 requestLocationUpdates ,但是当我单击按钮时,我出错了。
587-673/? E/ANDR-PERF-MPCTL: Invalid profile no. 0, total profiles 0 only
总结一下,我的应用只是不发送 requestLocationUpdates 。而且我只需要知道设备的大概位置即可获得城市名称,因此不需要GPS。请帮我解决这个问题。谢谢。
答案 0 :(得分:0)
如果当前位置当前不可用,则可以使用此类来获取“当前位置”或“最后已知位置”。
在Manifest.xml中初始化活动
在应用标签
<activity android:name=".LocationFinder"></activity>
通过致电
开始此活动startActivity(new Intent(getApplicationContext(), LocationFinder.class));
finish();
现在,您只需调用-> LocationFinder.finalAddress
,即可在其他任何活动中获取位置信息需要位置和Internet权限
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
<uses-permission android:name="android.permission.INTERNET" />
LocationFinder.java
import android.annotation.SuppressLint;
import android.content.Context;
import android.location.Address;
import android.location.Criteria;
import android.location.Geocoder;
import android.location.Location;
import android.location.LocationListener;
import android.location.LocationManager;
import android.os.Bundle;
import android.support.annotation.Nullable;
import android.support.v7.app.AppCompatActivity;
import android.widget.Toast;
import java.io.IOException;
import java.util.List;
import java.util.Locale;
@SuppressLint("MissingPermission")
public class LocationFinder extends AppCompatActivity implements LocationListener {
private LocationManager locationManager;
private String provider;
public static String finalAddress;
@Override
protected void onCreate(@Nullable Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
getLoc();
}
public void getLoc() {
locationManager = (LocationManager) getSystemService(Context.LOCATION_SERVICE);
Criteria criteria = new Criteria();
provider = locationManager.getBestProvider(criteria, true);
Location location = locationManager.getLastKnownLocation(provider);
if (location == null) {
location = getLastKnownLocation();
}
if (location != null) {
System.out.println("Provider " + provider + " has been selected.");
onLocationChanged(location);
} else {
Toast.makeText(this, "Location not available...", Toast.LENGTH_SHORT).show();
}
}
private Location getLastKnownLocation() {
List<String> providers = locationManager.getProviders(true);
Location bestLocation = null;
for (String provider : providers) {
@SuppressLint("MissingPermission")
Location l = locationManager.getLastKnownLocation(provider);
if (l == null) {
continue;
}
if (bestLocation == null
|| l.getAccuracy() < bestLocation.getAccuracy()) {
bestLocation = l;
}
}
if (bestLocation == null) {
return null;
}
return bestLocation;
}
@Override
protected void onResume() {
super.onResume();
locationManager.requestLocationUpdates(provider, 400, 1, this);
}
@Override
protected void onPause() {
super.onPause();
locationManager.removeUpdates(this);
}
@Override
public void onLocationChanged(Location location) {
//You had this as int. It is advised to have Lat/Loing as double.
double lat = location.getLatitude();
double lng = location.getLongitude();
Geocoder geoCoder = new Geocoder(this, Locale.getDefault());
StringBuilder builder = new StringBuilder();
try {
List<Address> address = geoCoder.getFromLocation(lat, lng, 1);
int maxLines = address.get(0).getMaxAddressLineIndex()+1;
for (int i=0; i<maxLines; i++) {
String addressStr = address.get(0).getAddressLine(i);
builder.append(addressStr);
builder.append(" ");
}
finalAddress = builder.toString(); //This is the complete address.
} catch (IOException | NullPointerException e) {
// Handle IOException
}
}
@Override
public void onStatusChanged(String provider, int status, Bundle extras) {
}
@Override
public void onProviderEnabled(String provider) {
Toast.makeText(this, "Enabled new provider " + provider,
Toast.LENGTH_SHORT).show();
}
@Override
public void onProviderDisabled(String provider) {
Toast.makeText(this, "Disabled provider " + provider,
Toast.LENGTH_SHORT).show();
}
}
获取完整的地址后,您可以使用拆分方法获取国家名称等