实现的功能:先获取本地的经纬度,再根据经纬度,请求googleapis来解析地理位置名称。
下面的例子,能够跑起来,亲测。
多说无益,看码。
首先搞一个布局,其实就是一个textView,一个button,点击button后,在textview展示地理位置信息。
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context=".MainActivity" >
<TextView
android:id="@+id/tv_location_show"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/hello_world" />
<Button
android:id="@+id/btn_show_location"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="获取当前位置" >
</Button>
</RelativeLayout>
为了方便,我直接把获取地理位置、经纬度解析,都放到MainActivity里面了。(其实就是懒,这样不好,还是该做什么的类去做什么,应该分开放的)
package com.example.getlocation;
import java.util.List;
import org.apache.http.HttpEntity;
import org.apache.http.HttpResponse;
import org.apache.http.client.HttpClient;
import org.apache.http.client.methods.HttpGet;
import org.a

这篇博客介绍了如何在Android应用中获取GPS位置的经纬度,并使用谷歌地图API将这些坐标转换为地理位置名称。通过在布局中设置一个TextView和Button,用户点击Button后,TextView会显示解析出的地理位置信息。为了实现这一功能,需要在MainActivity中处理位置获取和解析,并且必须申请相应的权限以避免程序报错。
最低0.47元/天 解锁文章

被折叠的 条评论
为什么被折叠?



