用户定位(一)
User Location 和Google Maps是导航软件的基础,并不能用来做,
GPS 美国摩托罗拉公司,民用的定位在在20米左右。
电信:信号接受塔,
1、User Location能用来做什么?
- 获取用户的位置
- 追踪用户的移动
2、User Locaiton的两个关键的API
Location Manager:用于管理Android的用户定位服务
Location Providers:提供三种定位方式,有两种是最常见的,
GPS 定位 :android.permission.ACCESS_FINE_LOCATION
NETWORK定位:信号接受塔和wifi的接收点进行定位,android.permission.ACCESS_FINE_LOCATION(相对精确) 或者是android.permission.ACCESS_COARSE_LOCATION(不精确)
Passive定位:被动的定位,用的不多
3、获取用户的当前位置(最常用)
三、实现的一般步骤:
1、在AndroidManifest.xml里定义权限
2、获取LocationManager对象
3、选择LocationProvider
4、绑定LocationListener对象(位置移动时会触发某个时间)
四、代码参考:
AndroidManifest.xml
<?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="max.userLocation" android:versionCode="1" android:versionName="1.0" > <uses-sdk android:minSdkVersion="7" /> <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" /> <application android:icon="@drawable/ic_launcher" android:label="@string/app_name" > <activity android:name=".UserLocation" android:label="@string/app_name" > <intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER" /> </intent-filter> </activity> </application> </manifest>
userLocation.java
package max.userLocation; import android.app.Activity; import android.location.Location; import android.location.LocationListener; import android.location.LocationManager; import android.os.Bundle; import android.view.View; import android.view.View.OnClickListener; import android.widget.Button; public class UserLocation extends Activity { /** Called when the activity is first created. */ Button userLocationBtn = null; @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.main); userLocationBtn = (Button) findViewById(R.id.buttonId); userLocationBtn.setOnClickListener(new userLocationBtnListener()); } class userLocationBtnListener implements OnClickListener { @Override public void onClick(View arg0) { // TODO Auto-generated method stub LocationManager locationManager = (LocationManager) MainActivity.this.getSystemService(Context.LOCATION_SERVICE); 定义当前使用的定位方式,一个是时间(多长时间来更新位置,只是一个参考值),一个是距离(最小距离)。绑定监听器。 locationManager.requestLocationUpdates(LocationManager.GPS_PROVIDER, 0, 0, new userLocationListener()); } } class userLocationListener implements LocationListener { //当设备的位置发生改变就会调用这个方法 度 分 秒 double类型的 @Override public void onLocationChanged(Location location) { // TODO Auto-generated method stub System.out.println("经度:" +location.getLongitude()); System.out.println("纬度:" +location.getLatitude()); } @Override public void onProviderDisabled(String provider) { // TODO Auto-generated method stub } // @Override public void onProviderEnabled(String provider) { // TODO Auto-generated method stub } //当状态改变的时候 @Override public void onStatusChanged(String provider, int status, Bundle extras) { // TODO Auto-generated method stub } } }
4、使用DDMS模拟定位
模拟器是没有GPS效果的,但是有方法。
时间: 2024-10-06 17:06:17