我有一个使用 Xamarin mobile (MonoDroid) 构建的 Android 应用程序。应用需要获取当前用户的 gps 坐标。不幸的是,我似乎无法PositionChanged
触发该事件。
private Geolocator geolocator = null;
private void InitializeStuff()
{
geolocator = new Geolocator(this) { DesiredAccuracy = 1 };
if (geolocator.IsGeolocationEnabled == false)
statusTextView.Text = "Please allow this application to access your location.";
else if (geolocator.IsGeolocationAvailable == false)
statusTextView.Text = "Your location could not be determined.";
else
statusTextView.Text = "Ready.";
geolocator.PositionChanged += geolocator_PositionChanged;
myButton.Click += myButton_Click;
}
private void myButton_Click(object sender, EventArgs e)
{
statusTextView.Text = "Getting position...";
if ((geolocator != null) && (geolocator.IsListening == true))
geolocator.StartListening(minTime: 1000, minDistance: 0);
}
private void geolocator_PositionChanged(object sender, PositionEventArgs e)
{
RunOnUiThread(() =>
{
statusTextView.Text = "Lat: " + e.Position.Latitude.ToString("N6") + ", Long: " + e.Position.Longitude.ToString("N6");
});
}
我可以成功地让我的应用程序达到它说“获取位置......”的程度。但是,该PositionChanged
事件永远不会触发。我正在 Android 模拟器中测试我的应用程序,因为我没有 Android 设备。我正在通过在模拟器中测试此功能。然后,我输入以下命令:
geo fix -73.985708 40
命令窗口显示“确定”。但是,该PositionChanged
事件永远不会触发。我的模拟器是 Android 2.2 模拟器。感谢您提供的任何见解。