0

我想用 gps 获取用户位置这是我的代码

public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);
        t=(TextView)findViewById(R.id.textView1);


        LocationManager mlocManager = (LocationManager)getSystemService(Context.LOCATION_SERVICE);
        LocationListener mlocListener = new MyLocationListener();

        mlocManager.requestLocationUpdates(LocationManager.GPS_PROVIDER, 0, 0, mlocListener);

    }

    public class MyLocationListener implements LocationListener
    {

        @Override
        public void onLocationChanged(Location location) {
            // TODO Auto-generated method stub
            double lat=location.getLatitude();
            double longt= location.getLongitude();


            Geocoder gc=new Geocoder(getApplicationContext(),Locale.getDefault());
               try
               {
                   List <Address> adresses=gc.getFromLocation(lat, longt, 1);
                   StringBuilder sb=new StringBuilder();
                   if(adresses.size()>0)
                   {
                       Address address=adresses.get(0);
                       for(int i=0;i<address.getMaxAddressLineIndex();i++)
                           sb.append(address.getAddressLine(i)).append("\n");

                       sb.append(address.getLocality()).append("\n");
                       sb.append(address.getPostalCode()).append("\n");
                       sb.append(address.getCountryName());

                   }

                   String a="Latitude:"+lat+"\nLongtitude:"+longt+"\nAddress:"+sb.toString();
                   t.setText(a);
               }

               catch(Exception e)
               {
                   t.setText("Error.\n"+e.toString());
               }
        }

我授予了所有权限;

平台为 Android 2.2.3 设备为 HTC Wildfire S

代码不会引发错误,但它也不起作用

有人知道吗?

4

1 回答 1

0

您是否通过免费应用程序或其他任何东西确认您应该收到 GPS 位置?有时我在 30 分钟、60 分钟、2 小时内都没有得到位置修复……即使我之前在同一个位置得到了一个。我在哪里我从来没有在室内修理过;但是,如果我在外面走动然后回到里面,我会得到修复。

你的代码在我的 HTC 上执行得很好(走到外面之后)。虽然现在这不会影响任何事情,但我建议更改:

LocationListener mlocListener = new MyLocationListener();

至:

MyLocationListener mlocListener = new MyLocationListener();

当您使 MyLocationListener 更复杂时。

于 2012-05-25T18:19:37.257 回答