仅从 Xamarin 中的 GPS 传感器检索位置信息 Android
Retrieve Location Information only from GPS Sensor in Xamarin Android
我是否可以配置我的 android 应用程序以仅从 GPS 传感器获取位置信息。我正在使用 Xamarin.Essentials 包来获取位置信息。在我的清单中,我根据文档添加了以下权限。
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
<uses-feature android:name="android.hardware.location" android:required="false" />
<uses-feature android:name="android.hardware.location.gps" android:required="false" />
<uses-feature android:name="android.hardware.location.network" android:required="false" />
<uses-permission android:name="android.permission.ACCESS_LOCATION_EXTRA_COMMANDS" />
<uses-permission android:name="android.permission.ACCESS_MOCK_LOCATION" />
<uses-sdk android:minSdkVersion="25" android:targetSdkVersion="28" />
谁能告诉我实施上述请求不需要哪些所有权限/使用功能?
我尝试了不同的组合,但不确定哪个是正确的。
如果您只想从 Xamarin 中的 GPS 传感器检索位置信息 Android。
你应该使用 Android native API 来实现它。如果您使用 Xamarin.Essentials
,它将通过 GPS 提供商、网络提供商、被动提供商获取坐标。
这是运行 GIF。
添加此权限。
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
并像这样创建一个 LocationManager 实例:
LocationManager locationManager = (LocationManager)Android.App.Application.Context.GetSystemService(Context.LocationService);
然后执行LocationListener
并通过GPS获取坐标:
MyLocationListener locationListener = new MyLocationListener(this);
locationManager.RequestLocationUpdates(LocationManager.GpsProvider, 5000, 10, locationListener);
MyLocationListener 代码。
public class MyLocationListener : Java.Lang.Object, ILocationListener
{
private MainActivity mainActivity;
public MyLocationListener(MainActivity mainActivity)
{
this.mainActivity = mainActivity;
}
public void OnLocationChanged(Location loc)
{
Toast.MakeText(
mainActivity,
"Location changed: Lat: " + loc.Latitude + " Lng: "
+ loc.Longitude, ToastLength.Short).Show();
}
public void OnProviderDisabled(string provider)
{
// throw new NotImplementedException();
}
public void OnProviderEnabled(string provider)
{
// throw new NotImplementedException();
}
public void OnStatusChanged(string provider, [GeneratedEnum] Availability status, Bundle extras)
{
// throw new NotImplementedException();
}
}
最后别忘了申请运行时权限
我是否可以配置我的 android 应用程序以仅从 GPS 传感器获取位置信息。我正在使用 Xamarin.Essentials 包来获取位置信息。在我的清单中,我根据文档添加了以下权限。
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
<uses-feature android:name="android.hardware.location" android:required="false" />
<uses-feature android:name="android.hardware.location.gps" android:required="false" />
<uses-feature android:name="android.hardware.location.network" android:required="false" />
<uses-permission android:name="android.permission.ACCESS_LOCATION_EXTRA_COMMANDS" />
<uses-permission android:name="android.permission.ACCESS_MOCK_LOCATION" />
<uses-sdk android:minSdkVersion="25" android:targetSdkVersion="28" />
谁能告诉我实施上述请求不需要哪些所有权限/使用功能?
我尝试了不同的组合,但不确定哪个是正确的。
如果您只想从 Xamarin 中的 GPS 传感器检索位置信息 Android。
你应该使用 Android native API 来实现它。如果您使用 Xamarin.Essentials
,它将通过 GPS 提供商、网络提供商、被动提供商获取坐标。
这是运行 GIF。
添加此权限。
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
并像这样创建一个 LocationManager 实例:
LocationManager locationManager = (LocationManager)Android.App.Application.Context.GetSystemService(Context.LocationService);
然后执行LocationListener
并通过GPS获取坐标:
MyLocationListener locationListener = new MyLocationListener(this);
locationManager.RequestLocationUpdates(LocationManager.GpsProvider, 5000, 10, locationListener);
MyLocationListener 代码。
public class MyLocationListener : Java.Lang.Object, ILocationListener
{
private MainActivity mainActivity;
public MyLocationListener(MainActivity mainActivity)
{
this.mainActivity = mainActivity;
}
public void OnLocationChanged(Location loc)
{
Toast.MakeText(
mainActivity,
"Location changed: Lat: " + loc.Latitude + " Lng: "
+ loc.Longitude, ToastLength.Short).Show();
}
public void OnProviderDisabled(string provider)
{
// throw new NotImplementedException();
}
public void OnProviderEnabled(string provider)
{
// throw new NotImplementedException();
}
public void OnStatusChanged(string provider, [GeneratedEnum] Availability status, Bundle extras)
{
// throw new NotImplementedException();
}
}
最后别忘了申请运行时权限