尝试获取 Android 手机的更新位置,但代码给我带来了问题

发布于 2024-11-01 15:51:19 字数 746 浏览 0 评论 0原文

我试图定期更新手机的位置,但我的代码出现一些错误。事情是这样的:

LocationManager locm = (LocationManager)getSystemService(Context.LOCATION_SERVICE); 
Location location = locm.getLastKnownLocation(LocationManager.GPS_PROVIDER);

double longitude = location.getLongitude();
double latitude = location.getLatitude();



private final LocationListener locationListener = new LocationListener() {
    public void onLocationChanged(Location location) {
        longitude = location.getLongitude();
        latitude = location.getLatitude();
    }

    locm.requestLocationUpdates(LocationManager.GPS, 2000, 10, locationListener);
        // error here : Syntax error on token(s), misplaced constructs

问题是,当我取出最后一行代码时,代码中没有错误。有人可以帮我吗?任何帮助将不胜感激。

I am trying to update the location of the phone periodically, but I am getting some errors with my code. Here it is:

LocationManager locm = (LocationManager)getSystemService(Context.LOCATION_SERVICE); 
Location location = locm.getLastKnownLocation(LocationManager.GPS_PROVIDER);

double longitude = location.getLongitude();
double latitude = location.getLatitude();



private final LocationListener locationListener = new LocationListener() {
    public void onLocationChanged(Location location) {
        longitude = location.getLongitude();
        latitude = location.getLatitude();
    }

    locm.requestLocationUpdates(LocationManager.GPS, 2000, 10, locationListener);
        // error here : Syntax error on token(s), misplaced constructs

The thing is, when I take out the last line of code, there are no errors in the code. Can somebody help me please?? Any help would be much appreciated.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

请叫√我孤独 2024-11-08 15:51:19

您可能想尝试我发现的这个不错的图书馆项目。它有很好的文档记录,并且是 Apache License 2.0。

http://code.google.com/p/little-fluffy-location-图书馆/

You might want to try this nice library project I found. It's nicely documented and is Apache License 2.0.

http://code.google.com/p/little-fluffy-location-library/

被翻牌 2024-11-08 15:51:19

您错过了新位置侦听器中的右括号。

private final LocationListener locationListener = new LocationListener() {
    public void onLocationChanged(Location location) {
        longitude = location.getLongitude();
        latitude = location.getLatitude();
    }
}; <--

You miss the closing bracket in the new location listener.

private final LocationListener locationListener = new LocationListener() {
    public void onLocationChanged(Location location) {
        longitude = location.getLongitude();
        latitude = location.getLatitude();
    }
}; <--
喜你已久 2024-11-08 15:51:19

您的最后一行(“locm.resquestLocationUpdates...”)需要位于方法内。看起来就像是直接在一个班级里。

Your last line ("locm.resquestLocationUpdates...") needs to be within a method. It looks like it's directly in a class.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文