我制作了一个具有地理位置的简单应用,可在文本视图中显示用户的当前位置(如纬度,经度),并使用 Geocoder 城市名国家/地区邮政编码等。
一切都可以在模拟器中完美运行,但是由于某些原因,无法在我的手机中检索到该位置。
模拟器运行的是android 7.1,而我的手机运行的是android 7.0,但这应该不是问题,因为我制作的应用程序考虑了6.0的棉花糖。
这是代码
“主要活动”
package com.example.slimshady.LocationInfoApp;
import android.Manifest;
import android.content.Context;
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.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 java.util.List;
import java.util.Locale;
public class MainActivity extends AppCompatActivity {
LocationManager locationManager;
LocationListener locationListener;
Geocoder geocoder;
TextView latitude, longitude, city, postcode, country;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
latitude = (TextView)findViewById(R.id.latitude);
longitude = (TextView) findViewById(R.id.longitude);
city = (TextView)findViewById(R.id.city);
postcode = (TextView)findViewById(R.id.postcode);
country = (TextView)findViewById(R.id.country);
locationManager = (LocationManager) this.getSystemService(Context.LOCATION_SERVICE);
locationListener = new LocationListener() {
@Override
public void onLocationChanged(Location location) {
updateLocationInfo(location);
}
@Override
public void onStatusChanged(String s, int i, Bundle bundle) {
}
@Override
public void onProviderEnabled(String s) {
}
@Override
public void onProviderDisabled(String s) {
}
};
// asking permission starts here
if (Build.VERSION.SDK_INT < 23){
// api level lower than 23 so no need to ask for permission
try {
locationManager.requestLocationUpdates(LocationManager.GPS_PROVIDER, 0,0, locationListener);
}
catch (SecurityException e){
e.printStackTrace();
}
}
else {
// api level greater than or equal to 23 checking if has permission if not VVVV this condition
// means go ask for permission
if (ContextCompat.checkSelfPermission(this, Manifest.permission.ACCESS_FINE_LOCATION) != PackageManager.PERMISSION_GRANTED){
ActivityCompat.requestPermissions(this, new String[]{Manifest.permission.ACCESS_FINE_LOCATION}, 0);
}
else{
// means api level greater than or equal to 23 and already has permission
// so no need to go out and ask for permission
locationManager.requestLocationUpdates(LocationManager.GPS_PROVIDER, 0,0, locationListener);
// last known location because we went to this part means we have been here before
Location lastKnownLocation = locationManager.getLastKnownLocation(LocationManager.GPS_PROVIDER);
if (lastKnownLocation != null) {
updateLocationInfo(lastKnownLocation);
}
}
}
// asking permission ends here
}
public void updateLocationInfo(Location location) {
geocoder = new Geocoder(getApplicationContext(), Locale.getDefault());
try {
List<Address> locationAddress = geocoder.getFromLocation(location.getLatitude(), location.getLongitude(),1);
if (locationAddress != null && locationAddress.size() > 0) {
latitude.setText("Latitude: "+String.valueOf(locationAddress.get(0).getLatitude()));
longitude.setText("Longitude: "+String.valueOf(locationAddress.get(0).getLongitude()));
city.setText("City: "+String.valueOf(locationAddress.get(0).getLocality()));
postcode.setText("Post Code: "+String.valueOf(locationAddress.get(0).getPostalCode()));
country.setText("Country: "+String.valueOf(locationAddress.get(0).getCountryName()));
}
}
catch (Exception e){
}
}
@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){
startListening();
}
}
public void startListening(){
if (ContextCompat.checkSelfPermission(this, Manifest.permission.ACCESS_FINE_LOCATION) == PackageManager.PERMISSION_GRANTED){
locationManager.requestLocationUpdates(LocationManager.GPS_PROVIDER, 0,0, locationListener);
}
}
}
该代码简单,基本,一切都可以正常运行,但由于某些原因却不能。
我的意思是我的物理设备中的GPS接收器可以与google-maps配合使用,所以我知道它没有损坏。
但是相同的代码在我的手机上不起作用,并且我添加了所有权限:
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
<uses-permission android:name="android.permission.INTERNET"/>
看到同一应用程序无法在我的物理设备上运行,这是我的物理设备上的屏幕截图
如您所见,该位置已打开,在弹出窗口中被询问时,我已授予权限。 最后但并非最不重要的一点是要表明GPS接收器可以工作并且在我的物理设备中没有损坏。
答案 0 :(得分:1)
设备可以通过多种方式自行定位。如果没有,通常将它们混淆为“ GPS”。
您的代码当前仅使用LocationManager.GPS_PROVIDER
,后者仅使用卫星来定位您的设备。 Google地图可能正在使用“网络位置”,当GPS禁用时,该位置仍然可以使用。
我怀疑您需要:
LocationManager.NETWORK_PROVIDER
或答案 1 :(得分:0)
我解决了您完全删除的位置管理器之类的问题,并根据FusedLocationProviderClient
使所有位置正常工作,我在三星s8上也遇到了一个奇怪的错误,LocationSettingsRequest
可以启动默认对话框以打开gps,它可以解决错误,但是在删除locationManager.requestLocationUpdates
之后,可以完美地与融合一起使用。
答案 2 :(得分:0)
如果您在物理设备中使用已发布的APK,则必须在Google API控制台的“限制”部分中为SHAK添加SHA1。我认为这会有所帮助。
如果不是,那么请通过在物理设备中调试应用程序来显示logcat错误。