读书人

LocationManager 的requestLocationUp

发布时间: 2012-09-21 15:47:26 作者: rapoo

LocationManager 的requestLocationUpdates用于本地信息更新

?

public class LocationReceiver extends BroadcastReceiver {     @Override     public void onReceive(Context context, Intent intent) {     //Do this when the system sends the intent     Bundle b = intent.getExtras();     Location loc = (Location)b.get("KEY_LOCATION_CHANGED");      Toast.makeText(context, loc.toString(), Toast.LENGTH_SHORT).show();      } }

?

读书人网 >PowerDesigner

热点推荐