用network_provider得不到位置信息
locman1=(LocationManager)getSystemService(Context.LOCATION_SERVICE);
if (locman1.isProviderEnabled(LocationManager.NETWORK_PROVIDER)){
TextView textview;
textview=(TextView)findViewById(R.id.lng);
textview.setText("network:enable");
}
locman1.requestLocationUpdates(LocationManager.NETWORK_PROVIDER, 0, 0, loclistener);
Location location=new Location("a");
location=locman1.getLastKnownLocation(LocationManager.NETWORK_PROVIDER);
if (location!=null){
TextView textview;
textview=(TextView)findViewById(R.id.lat);
textview.setText("lat:" +location.getLatitude());
}