hxn_217 2013-03-15 07:19 采纳率: 0%
浏览 6429
已采纳

getLastknownLocation()在 nexus 返回null值

我使用下面的代码来开发一个基于位置定位的项目,这个项目我是用的是google api 8。

lm.requestLocationUpdates(LocationManager.GPS_PROVIDER, 0, 0, this);
    currloc = lm.getLastKnownLocation(LocationManager.GPS_PROVIDER);
    TextView t = (TextView)findViewById(R.id.textView1);
    try{
        t.setText("Your current location is - "+currloc.getLatitude()+","+currloc.getLongitude());
    }catch (Exception e) {
        // TODO: handle exception
        t.setText("cant find current location ");
    }

这段代码在galaxy tab上能正常运行,htc上也可以。
但是当我使用nexus的时候,location得到的是null。对于galaxy nexus来说,我是不是得改变api版本,或者说还有其他一些特殊需求吗?

  • 写回答

3条回答 默认 最新

  • yongyong_21 2013-03-15 08:33
    关注

    仿照下面的代码:

    Step1: into your oncreate
    
    LocationListener locationListener = new LocalLocationListener();
        locationManager.requestLocationUpdates(LocationManager.GPS_PROVIDER, 0, 0, locationListener);
    
    Step2: into class body
    
    /**Listener on location change*/
    private class LocalLocationListener implements LocationListener
    {
    
        public void onLocationChanged(Location location)
        {
            String text = "My current Location is: "+location.getLatitude()+", "+location.getLongitude();
            GeoPoint geoPoint = new GeoPoint((int)(location.getLatitude()* 1E6), (int)(location.getLatitude() * 1E6));
            mapController_.animateTo(geoPoint);
            Toast.makeText(LocalMap.this, text, Toast.LENGTH_SHORT).show();
            Log.i("onLocationChanged", text);
    
        }
    
        public void onProviderDisabled(String provider)
        {
            // TODO Auto-generated method stub
            Toast.makeText(LocalMap.this, "GPS Disable", Toast.LENGTH_SHORT).show();
            Log.i("onProviderDisabled", "GPS Disable");
        }
    
        public void onProviderEnabled(String provider)
        {
            // TODO Auto-generated method stub
            Toast.makeText(LocalMap.this, "GPS Enable", Toast.LENGTH_SHORT).show();
            Log.i("onProviderEnabled", "GPS Enable");
        }
    
        public void onStatusChanged(String provider, int status, Bundle extras)
        {
            // TODO Auto-generated method stub
    
        }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(2条)

报告相同问题?

悬赏问题

  • ¥15 多电路系统共用电源的串扰问题
  • ¥15 slam rangenet++配置
  • ¥15 有没有研究水声通信方面的帮我改俩matlab代码
  • ¥15 对于相关问题的求解与代码
  • ¥15 ubuntu子系统密码忘记
  • ¥15 信号傅里叶变换在matlab上遇到的小问题请求帮助
  • ¥15 保护模式-系统加载-段寄存器
  • ¥15 电脑桌面设定一个区域禁止鼠标操作
  • ¥15 求NPF226060磁芯的详细资料
  • ¥15 使用R语言marginaleffects包进行边际效应图绘制