main.xml

<?xml version="1.0" encoding="utf-8"?><LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"    android:orientation="vertical"    android:layout_width="fill_parent"    android:layout_height="fill_parent"    ><EditText    android:id="@+id/show"      android:layout_width="fill_parent"     android:layout_height="wrap_content"     android:editable="false"    android:cursorVisible="false"    /></LinearLayout>

LocationTest.java

package org.crazyit.gps;import android.app.Activity;import android.content.Context;import android.location.Location;import android.location.LocationListener;import android.location.LocationManager;import android.os.Bundle;import android.widget.EditText;/** * Description: * <br/>site: <a href="http://www.crazyit.org">crazyit.org</a> * <br/>Copyright (C), 2001-2014, Yeeku.H.Lee * <br/>This program is protected by copyright laws. * <br/>Program Name: * <br/>Date: * @author  Yeeku.H.Lee [email protected] * @version  1.0 */public class LocationTest extends Activity{    // 定义LocationManager对象    LocationManager locManager;    // 定义程序界面中的EditText组件    EditText show;    @Override    public void onCreate(Bundle savedInstanceState)    {        super.onCreate(savedInstanceState);        setContentView(R.layout.main);        // 获取程序界面上的EditText组件        show = (EditText) findViewById(R.id.show);        // 创建LocationManager对象        locManager = (LocationManager) getSystemService            (Context.LOCATION_SERVICE);        // 从GPS获取最近的最近的定位信息        Location location = locManager.getLastKnownLocation(            LocationManager.GPS_PROVIDER);        // 使用location根据EditText的显示        updateView(location);        // 设置每3秒获取一次GPS的定位信息        locManager.requestLocationUpdates(LocationManager.GPS_PROVIDER            , 3000, 8, new LocationListener()  //        {            @Override            public void onLocationChanged(Location location)            {                // 当GPS定位信息发生改变时,更新位置                updateView(location);            }            @Override            public void onProviderDisabled(String provider)            {                updateView(null);            }            @Override            public void onProviderEnabled(String provider)            {                // 当GPS LocationProvider可用时,更新位置                updateView(locManager                    .getLastKnownLocation(provider));            }            @Override            public void onStatusChanged(String provider, int status,                Bundle extras)            {            }        });    }    // 更新EditText中显示的内容    public void updateView(Location newLocation)    {        if (newLocation != null)        {            StringBuilder sb = new StringBuilder();            sb.append("实时的位置信息:\n");            sb.append("经度:");            sb.append(newLocation.getLongitude());            sb.append("\n纬度:");            sb.append(newLocation.getLatitude());            sb.append("\n高度:");            sb.append(newLocation.getAltitude());            sb.append("\n速度:");            sb.append(newLocation.getSpeed());            sb.append("\n方向:");            sb.append(newLocation.getBearing());            show.setText(sb.toString());        }        else        {            // 如果传入的Location对象为空则清空EditText            show.setText("");        }    }}

上面的程序中粗体字代码用于从Location中获取定位信息,包括用户的经度、纬度、高度、方向和移动速度等信息。程序中①号粗体宁代码通过LocationManager设置了一个监听器,该}监听器负责每隔3秒向LocationProvider请求一次定位信息,当LocationProvider可用时、不可用时或提供的定位信息发生改变时,系统会回调updateView(Location newLocation)来更新EditText中漫示的定位信息。
该程序需要有访问GPS信号的权限,因此需要在AndroidManifest.xml文件中增加如下授权代码片段:

<!-- 授权获取定位信息 -->
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />

截图:

image

更多相关文章

  1. 【android build】 如何在android.mk中获得打印信息
  2. Android 开发系列6 安装Cordova及示例程序
  3. Android开机自动启动程序
  4. android 获取设备Id等信息
  5. Android 自定义拨打电话程序段
  6. android获取进程信息,运行内存信息
  7. Android获取SIM卡信息--TelephonyManager
  8. Android应用程序键盘(Keyboard)消息处理机制分析(18)

随机推荐

  1. android获取正在运行的应用程序
  2. Android(安卓)Activity 半透明效果(Trans
  3. Android(安卓)Handler 绑定自定义线程之H
  4. Android Q Beta 发布
  5. RxAndroid和RxJava的资料分享
  6. Android(安卓)左侧滑动窗口打开关闭监测
  7. Android集成支付宝
  8. Android中的sp和dp的区别
  9. Android Studio 快速入门详解
  10. Android中Fragment与Activity之间的交互(