为了便于理解,接下来模拟一个案例,如何在程序代码中使用GPS获取位置信息。
第一步:新建一个Android工程项目,命名为mygps,目录结构如下
AndroidGPS定位详解 (4)_android

第二步:修改main.xml布局文件,修改内容如下:
AndroidGPS定位详解 (4)_android_02
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    androidAndroidGPS定位详解 (4)_android_03rientation
="vertical"
    android:layout_width
="fill_parent"
    android:layout_height
="fill_parent">
    <EditText android:layout_width="fill_parent"
        android:layout_height
="wrap_content"
        android:cursorVisible
="false"
        android:editable
="false"
        android:id
="@+id/editText"/>
</LinearLayout>AndroidGPS定位详解 (4)_android_02