0

我有一个使用 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 模拟器。感谢您提供的任何见解。

4

1 回答 1

0

我怀疑您在 if 语句中的条件在myButton_Click处理程序中是错误的:

if ((geolocator != null) && (geolocator.IsListening == true))

以上意味着如果地理定位器不为空并且它正在侦听,那么您开始侦听位置变化。如果您将其更改为:

if ((geolocator != null) && (geolocator.IsListening != true))

它应该按预期工作。

编辑: 你也不需要在你的两个条件周围加上括号,它可以写成:

if (geolocator != null && geolocator.IsListening == true)
于 2013-05-06T18:03:52.230 回答